This version drives the Tx and mainSample pins using two PWM outputs of Timer1 rather than driving them "manually" with digitalWrite(). The duration of the corresponding pulses is jitter free and can be changed in exact increments of the system clock period (62.5 ns).
Since TImer1 only has two separate PWM outputs, the driving of the efeSample pin is still done manually with digitalWrite(). Jitter in the efeSample is not critical because at this delay the input signal is almost constant.
In the original version the mainSample pin is already assigned to a PWM output of Timer1, so this pin is left unchanged. On the other hand, the Tx pin is not PWM, so in order to use this sketch you must physycally swap the Tx and efeSample pins (Tx -> pin 10; efeSample -> pin 8 ) so that TImer1 PWM output OC1B can drive the Tx signal.
The original also contains variabes that can be replaced by #define statements of the C preproessor, saving memory for further modifications (adding an I2C display, etc.). Other variables are no longer necessary as this version requires less calculations.
Timer1 is configured as CTC (clear timer on compare), with the maximum count being stored in the ICR1 register. This would be the txPeriodCount. The Tx pulse starts at count 1 and ends at txOn + 1, according to the values stored in OCR1B and the set/clear flags in TCCR1A. The interrupts take care of dynamically changing the configuration between each edge of the pulses to prepare the next edge. The timing of the Tx and mainSamnple signals is done by hardware and do not depend on the latency of the interrupts (no offset values required).
Aduino_PI2.zip
10us delay between the end of the Tx pulse (blue) and the beginning of the mainSample (yellow)

50us duration of the mainSample (yellow)
Since TImer1 only has two separate PWM outputs, the driving of the efeSample pin is still done manually with digitalWrite(). Jitter in the efeSample is not critical because at this delay the input signal is almost constant.
In the original version the mainSample pin is already assigned to a PWM output of Timer1, so this pin is left unchanged. On the other hand, the Tx pin is not PWM, so in order to use this sketch you must physycally swap the Tx and efeSample pins (Tx -> pin 10; efeSample -> pin 8 ) so that TImer1 PWM output OC1B can drive the Tx signal.
The original also contains variabes that can be replaced by #define statements of the C preproessor, saving memory for further modifications (adding an I2C display, etc.). Other variables are no longer necessary as this version requires less calculations.
Timer1 is configured as CTC (clear timer on compare), with the maximum count being stored in the ICR1 register. This would be the txPeriodCount. The Tx pulse starts at count 1 and ends at txOn + 1, according to the values stored in OCR1B and the set/clear flags in TCCR1A. The interrupts take care of dynamically changing the configuration between each edge of the pulses to prepare the next edge. The timing of the Tx and mainSamnple signals is done by hardware and do not depend on the latency of the interrupts (no offset values required).
Aduino_PI2.zip
10us delay between the end of the Tx pulse (blue) and the beginning of the mainSample (yellow)
50us duration of the mainSample (yellow)
Comment