hi sir
i am using ti 28335 dsp processor.with max 3.3 v...i am having stator currents of 0-5v range from intelligent power module sensors...i want to scale it down to 3.3 v before giving into dsp processor 12 BIT adc pins.How can i do the same..wether the below conversion ll do the same?
ADCINA0=ADCRegs.Result0>>4;
ADCINB0=ADCRegs.Result1>>4;
Ia=ADCINA0*4096/3.3;
Ib=ADCINB0*4096/3.3;
Can you suggest me on the adc conversions?