This project needs some updated info.
As Carl stated in the HH3 intro thread, the idea for the HH3 is to do as much of this detector design in software. Please go read the other HH3 threads for some discussions on processors, ADCs, and importantly Power Supplies as well and threads in other sections on Pre-amps, and TX switching circuits.
I will be describing mostly the Software process which can be applied to most PI detector hardware front circuits.
My take is to use only the TX circuit and Rx pre-amp circuit from the HH2. See the thread "My Take on the HH2" for back ground info:
https://www.geotech1.com/forums/show...ake-on-the-HH2
Since I have been using PIC micro-processors and have the knowhow and tolls for these I chose the PIC32MX250 in a 28-pin DIP package. The Dip makes prototyping and building easy compared to the smaller pitch surface mount packages. The PIC32MX runs at 50MHz and uses a mips 32 bit architecture.
It was Moodz's MagPi that inspired me to look into this PIC32MX. He also has some good idea on PI analog circuits and a PIC32MX baord. Details are here:
https://www.geotech1.com/forums/foru...l-Front-End-PI
Note: There are many other processors that can do the job like Atmel & STM. If you have a favorite then check the hardware for features that can do what I will describe.
PIC32MX features used are:
OC (Output Compare) hardware for pulse generation. Clocked from hardware Timer TMR2.
1Msps, 10-bit ADCs. Sampling rate clocked from hardware timer TMR3.
DMA to grab ADC readings and move into memory with hardware. Triggered on ADC IF (Interrupt Flag).
I2C interface to EEPROM to store settings.
SPI interface to display.
UART interface for testing and debugging.
Hardware timer, TMR1 interrupt to generate Audio tones.
Some Specs:
TX pulse rate at 1500Hz (666usec period). This is the same as my HH2 and is a multiple of 60Hz.
Run ADC sampling at 2usec starting at TX pulse ON and going 128usec after TX pulse off (RX sampling).
ADC discussion:
There has been much talk about ADC resolution and number of bits required. My solution is using a 10bit ADC and then summing 4 to 16 TX/RX cycles of ADC sampling. This does two things:
1- This effectively increases the number of significant bits.
2- Decreases random noise.
It does slow down the response but what is the required response time? I use the rules of about 30ms is the fastest a human can perceive and anything that responses within 30ms is perceived as 'real time". So, 30ms divided by 666usec is 45 cycles. Therefore summing 16 cycles happens in 10.7msec, plenty fast for 'real time'. Bit resolution increases to 14 bits and noise decreases by sqrt(16) = 4. Since this is a 32 bit processor summing 16 10-bit samples does not over flow and also allows 'larger' values to be processed. Max 10-bit value is 1023, times 16 = 16384 and is 1/4 of a 16-bit value. Keep this in mind when assigning value types later. A 'short' is a signed 16-bit value and two 'short's can be packed into one 32-bit value.
Testing has found that the ADC summed resolution is more than adequate.
As Carl stated in the HH3 intro thread, the idea for the HH3 is to do as much of this detector design in software. Please go read the other HH3 threads for some discussions on processors, ADCs, and importantly Power Supplies as well and threads in other sections on Pre-amps, and TX switching circuits.
I will be describing mostly the Software process which can be applied to most PI detector hardware front circuits.
My take is to use only the TX circuit and Rx pre-amp circuit from the HH2. See the thread "My Take on the HH2" for back ground info:
https://www.geotech1.com/forums/show...ake-on-the-HH2
Since I have been using PIC micro-processors and have the knowhow and tolls for these I chose the PIC32MX250 in a 28-pin DIP package. The Dip makes prototyping and building easy compared to the smaller pitch surface mount packages. The PIC32MX runs at 50MHz and uses a mips 32 bit architecture.
It was Moodz's MagPi that inspired me to look into this PIC32MX. He also has some good idea on PI analog circuits and a PIC32MX baord. Details are here:
https://www.geotech1.com/forums/foru...l-Front-End-PI
Note: There are many other processors that can do the job like Atmel & STM. If you have a favorite then check the hardware for features that can do what I will describe.
PIC32MX features used are:
OC (Output Compare) hardware for pulse generation. Clocked from hardware Timer TMR2.
1Msps, 10-bit ADCs. Sampling rate clocked from hardware timer TMR3.
DMA to grab ADC readings and move into memory with hardware. Triggered on ADC IF (Interrupt Flag).
I2C interface to EEPROM to store settings.
SPI interface to display.
UART interface for testing and debugging.
Hardware timer, TMR1 interrupt to generate Audio tones.
Some Specs:
TX pulse rate at 1500Hz (666usec period). This is the same as my HH2 and is a multiple of 60Hz.
Run ADC sampling at 2usec starting at TX pulse ON and going 128usec after TX pulse off (RX sampling).
ADC discussion:
There has been much talk about ADC resolution and number of bits required. My solution is using a 10bit ADC and then summing 4 to 16 TX/RX cycles of ADC sampling. This does two things:
1- This effectively increases the number of significant bits.
2- Decreases random noise.
It does slow down the response but what is the required response time? I use the rules of about 30ms is the fastest a human can perceive and anything that responses within 30ms is perceived as 'real time". So, 30ms divided by 666usec is 45 cycles. Therefore summing 16 cycles happens in 10.7msec, plenty fast for 'real time'. Bit resolution increases to 14 bits and noise decreases by sqrt(16) = 4. Since this is a 32 bit processor summing 16 10-bit samples does not over flow and also allows 'larger' values to be processed. Max 10-bit value is 1023, times 16 = 16384 and is 1/4 of a 16-bit value. Keep this in mind when assigning value types later. A 'short' is a signed 16-bit value and two 'short's can be packed into one 32-bit value.
Testing has found that the ADC summed resolution is more than adequate.
Comment