Can someone please give me an english "How to" create pulses from a pic driven PI?
I have read the ITMD code and I think it is using interrupt to reload the timers but I'm not sure I understand how the whole thing does what it does.
My understanding is this;
Set TIMER1 to be the Tx pulse generator, then set the 16 bit timer (running as fast as possible) to be the pulse generator MASTER timer.
1) On trigger of the Tx pulse set the Tx output HIGH (or whatever) and trigger the 16 bit timer with the value to give the required pulse width of Tx pulse and point ISR to deal with the 16 bit timer.
2) When the 16 bit counter rolls over, shut off the Tx and load 16 Bit timer with the value for the delay of Tx(OFF) to Sample)_1.
3) When 16 bit counter rolls over set Sample_1 pin to HIGH and load the 16 bit timer with the value required to give the pulse width of Sample_1.
4) When 16 bit counter rolls over set Sample_1 pin to LOW and load the 16 bit counter with the value to give delay to Sample_2.
5) When 16 bit counter rolls over set Sample_2 pin to HIGH and load the 16 bit counter with the value to give the width of Sample_2.
6) When 16 bit counter rolls over set Sample_2 pin to LOW and load the 16 bit counter with the value to give delay to Sample_3.
7) When 16 bit counter rolls over set Sample_3 pin to HIGH and load the 16 bit counter with the value to give the width of Sample_3.
When 16 bit counter rolls over set Sample_2 pin to LOW and point the ISR to deal with interrupts from TIMER1 (looking for a roll over to signify "Next Tx pulse is due").
9) MEANWHILE, Do other stuff such as read pots, update display, change audio PWM, flash LED's etc.
Have I go the gist of this right or am I totally wrong about how this is done? I program PICS using Protobasic, but don't do much with timers etc a I don't need to but if I'm going to do PI stuff then I need to learn.
I have read the ITMD code and I think it is using interrupt to reload the timers but I'm not sure I understand how the whole thing does what it does.
My understanding is this;
Set TIMER1 to be the Tx pulse generator, then set the 16 bit timer (running as fast as possible) to be the pulse generator MASTER timer.
1) On trigger of the Tx pulse set the Tx output HIGH (or whatever) and trigger the 16 bit timer with the value to give the required pulse width of Tx pulse and point ISR to deal with the 16 bit timer.
2) When the 16 bit counter rolls over, shut off the Tx and load 16 Bit timer with the value for the delay of Tx(OFF) to Sample)_1.
3) When 16 bit counter rolls over set Sample_1 pin to HIGH and load the 16 bit timer with the value required to give the pulse width of Sample_1.
4) When 16 bit counter rolls over set Sample_1 pin to LOW and load the 16 bit counter with the value to give delay to Sample_2.
5) When 16 bit counter rolls over set Sample_2 pin to HIGH and load the 16 bit counter with the value to give the width of Sample_2.
6) When 16 bit counter rolls over set Sample_2 pin to LOW and load the 16 bit counter with the value to give delay to Sample_3.
7) When 16 bit counter rolls over set Sample_3 pin to HIGH and load the 16 bit counter with the value to give the width of Sample_3.

9) MEANWHILE, Do other stuff such as read pots, update display, change audio PWM, flash LED's etc.
Have I go the gist of this right or am I totally wrong about how this is done? I program PICS using Protobasic, but don't do much with timers etc a I don't need to but if I'm going to do PI stuff then I need to learn.
Comment