I have both the ACTUAL Whites TDi schematic, AND the TDi "Proto" schematic from here (NO I WONT give out any copies, I am sworn to keep it confidential, so DON'T ASK) but I need to know the following;
The pulse delay is adjustable yes?
OK, if it is, then do the other signals (S2, 3, 4, & 5) TRACK the initial S1 sample pulse, OR is the "main" sample pulse independent?
S2 is 34us from the end of the Tx pulse (and 9us from the end of S1) IF delay is set to 10us, SO, if I set the S1 to 5us, does S2 still occur at 34us, or does it similarly occur a fixed time after S1 goes low?
ALSO, to vary the overall Tx frequency, does the delay between S4 end , and the next Tx pulse vary, or do ALL the pulses compress (timewise) that is to say, do ALL pulses retain the same PERCENTAGE position of the overall Tx cycle (if that makes sense)?
What I plan on doing, is programming a PIC micro using two of the timers, One timer will be dedicated to the S1 sample, the other to generating S2 - S4 in the following manner;
Main PIC clock = 40MHz (25ns). This will also drive the timers.
15us sample pulse width = 600 clock cycles
Set an array of;
1. 65535 - 400 (10us) - Main Sample delay
2. 65535 -600 (15us) - Pulse Width
3. 65535 -360 (9us - Derived from 34 - (10+15)) - Delay S1end to S2)
4. 65535 -600 (15us) - S2
5. 65535 -3440 (86us) - S2end to S3
6. 65535 -600 (15us) - Pulse Width
7. 65535 -600 (15us) - S3end to S4
8. 65535 -600 (15us) - Pulse Width
9. 65535 -600 (15us) - Delay before Tx signal starts again
After the Tx pulse, each value will be loaded in turn, from the array into the timer where it will count UP and generate an interrupt at each "rollover". This array "INDEX" is the "Timing Stream Function Counter" which will be used to determine what should be done to one of five output pins (Tx, S1, S2, S3, & S4).
This is FAR more accurate than the Tx, delay, pulse, delay, pulse, delay, pulse, delay, pulse used in the HammerHead (Sorry George) as you should NEVER use "software delays" within an interrupt routine, far too much chance for the stack to fall over if a glitch occurs.
The pulse delay is adjustable yes?
OK, if it is, then do the other signals (S2, 3, 4, & 5) TRACK the initial S1 sample pulse, OR is the "main" sample pulse independent?
S2 is 34us from the end of the Tx pulse (and 9us from the end of S1) IF delay is set to 10us, SO, if I set the S1 to 5us, does S2 still occur at 34us, or does it similarly occur a fixed time after S1 goes low?
ALSO, to vary the overall Tx frequency, does the delay between S4 end , and the next Tx pulse vary, or do ALL the pulses compress (timewise) that is to say, do ALL pulses retain the same PERCENTAGE position of the overall Tx cycle (if that makes sense)?
What I plan on doing, is programming a PIC micro using two of the timers, One timer will be dedicated to the S1 sample, the other to generating S2 - S4 in the following manner;
Main PIC clock = 40MHz (25ns). This will also drive the timers.
15us sample pulse width = 600 clock cycles
Set an array of;
1. 65535 - 400 (10us) - Main Sample delay
2. 65535 -600 (15us) - Pulse Width
3. 65535 -360 (9us - Derived from 34 - (10+15)) - Delay S1end to S2)
4. 65535 -600 (15us) - S2
5. 65535 -3440 (86us) - S2end to S3
6. 65535 -600 (15us) - Pulse Width
7. 65535 -600 (15us) - S3end to S4
8. 65535 -600 (15us) - Pulse Width
9. 65535 -600 (15us) - Delay before Tx signal starts again
After the Tx pulse, each value will be loaded in turn, from the array into the timer where it will count UP and generate an interrupt at each "rollover". This array "INDEX" is the "Timing Stream Function Counter" which will be used to determine what should be done to one of five output pins (Tx, S1, S2, S3, & S4).
This is FAR more accurate than the Tx, delay, pulse, delay, pulse, delay, pulse, delay, pulse used in the HammerHead (Sorry George) as you should NEVER use "software delays" within an interrupt routine, far too much chance for the stack to fall over if a glitch occurs.
Comment