Originally posted by waltr
View Post
Attached is the source code ....
Theres stuff in there to do LCD / Serial and Rotary Encoder .... WIP.
The timing is set up for a 30us TX followed by a 30us RX. Why 30us ? ... because otherwise the TX fet will approach avalanche and the linear 5 volt reg will current limit and/or overheat.
The damping method will achieve the same timings with higher TX currents / voltages ... but obviously with a TX circuit and damping that can handle the higher currents and voltages.
.... built with NMOS / or SIC is the bees knees.
There are 2 feedback loops
Loop 1 ... the damping loop
The BSP230 mosfet performs the active damping and has a capacitor at its gate that stores the bias level fed by a sampling feedback loop. The sampling feedback loop takes a sample from the flyback error amplified by the preamp LM6171 ... this is the X sample.
Typically the X sample is taken just after the optimal flyback damping should hit 0 volts and 0 amps in the TX coil this the zero damping point ZDP ( use the SFR of the coil to get this ). The feedback loop sampling either can use a simple resistor ( eg 1k ) OR a peak diode detector & resistor ( eg 1k ) and leaky resistor ( eg 100k ).
If a simple resistor is used then the X sample can be set to say 100 nanoseconds at around at about 100 - 200 nanoseconds past the ZDP. If the diode peak sampling is used then the X sample window can be quite wide ( eg 10 us ) as the diode optimally samples the error peak.
Loop2 ... noise and offset reduction loop
The TX pulse is used as a control sample DG411 during the RX period to feed a noise / DC offset error correction via the NE5534 to the "ground" reference of the LM6171. This removes substantially all DC offset errors and low frequency mains / magnetic field influences etc in the signal.
Target Detection ...
Two samples DG411 drive the integrators feeding each input of the differential amp INA125 the output going the ADC on PIC32 via a simple low pass filter. As a baseline setting ... the RX time ( in this case 30 us ) is simply divided in half so that the first sample A is taken for 15 us .. then the second sample B is taken for 15 us where the total sample time is 30 us.
Surprisingly ... for a PI this "baseline" gives very good performance. This is the baseline setting for V3 with no controls fitted. ie basic detector. There is code in there to operate an LCD / Serial and Rot Enc.
Sound Generation ...
A single cycle of sine waveform is calculated and stored in an array at a particular volume. ( amplitude ) when the code boots. The cycle is played of an OC port pin as a PWM waveform by DMA using the repeating the single cycle sine over and over. The OC PWM timing is driven by clock timer 4. A DMA complete interrrupt is generated at the end every sine cycle "played" out.
The DMA interrupt handler basically reads the current averaged ADC target value and sets the frequency of timer 4 according to the value of the average target value. In this way a variable sine wave VCO is generated with relatively little CPU overhead. The volume can be adjusted by recalculating the amplitude of values stored in the single cycle array.
thats about it ..
PS ... the attached code is for a PIC32MX150 not 250 variant chip ... the MX150 is a little cheaper ( no USB ) ... but I dont use USB ... so etc .... ordered by mistake ... works the same otherwise.
PPS .. I use the v2.15 compiler ;-)
moodz
MAGPI008_2023_01_28_MX150.zip
Comment