Discussion of PIC coding started in JLKing's Bi-polar detector thread here:
https://www.geotech1.com/forums/show...-and-Front-End
I am moving continued discussion to this thread so we don't fill King's thread.
The PIC32MX and EZ series have a peripheral called 'Output compare'. What these can do is generate a "generate continuous output pulses onOCx pin".
This is perfect for controlling a PI (pulse inductor) TX using only one OC and with additional OC timing and outputs do Sample pulsing, RX clamping, Bipolar TX pulses, etc. The resolution of the pulses generated is only dependent of the PBCLK which clocks a hardware timer (TMRx). Typical PBCLKs are 1/2 of system clock which is 40 or 50MHz for PIC32MX and up to 200MHz for PIC32MZ EF. This means with the MZ pulse time resolution is 10nsec but only 40nsec in MX.
In addition each OCx can produce and interrupt. The ISR can then take action at precise times (plus ISR latency).
For a PI detector this OCx ISR can start another Timer that triggers ADC sample/convert.
These PICs also have a DMA engine that can be triggered from ADC interrupt flag.
The combination can then be setup so TX pulse then RX ADC sampling can be all in hardware.
I will post code sections as examples on how to setup and code.
Please ask questions and post code example you come up with.
https://www.geotech1.com/forums/show...-and-Front-End
I am moving continued discussion to this thread so we don't fill King's thread.
The PIC32MX and EZ series have a peripheral called 'Output compare'. What these can do is generate a "generate continuous output pulses onOCx pin".
This is perfect for controlling a PI (pulse inductor) TX using only one OC and with additional OC timing and outputs do Sample pulsing, RX clamping, Bipolar TX pulses, etc. The resolution of the pulses generated is only dependent of the PBCLK which clocks a hardware timer (TMRx). Typical PBCLKs are 1/2 of system clock which is 40 or 50MHz for PIC32MX and up to 200MHz for PIC32MZ EF. This means with the MZ pulse time resolution is 10nsec but only 40nsec in MX.
In addition each OCx can produce and interrupt. The ISR can then take action at precise times (plus ISR latency).
For a PI detector this OCx ISR can start another Timer that triggers ADC sample/convert.
These PICs also have a DMA engine that can be triggered from ADC interrupt flag.
The combination can then be setup so TX pulse then RX ADC sampling can be all in hardware.
I will post code sections as examples on how to setup and code.
Please ask questions and post code example you come up with.
Comment