This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
My project involves implementation of a hysteresis controller fro Buck Converter. The problem involves not to use CMPSS but ADCs for this task and achieve high switching frequency.
As I understand CLA can help in that process. There are three steps in achieving the objective -
The most time critical component seems to be first one which is just in time sampling. Is there any special thing that needs to be done to accomplish the early sampling? Any help is appreciated.
Have you looked at the example cla_ex5_adc_just_in_time available on C2000ware?
Unfortunately, this example is not included in the F2837x driverlib, but is available for other devices. You can use that as a reference
Regards,
Veena
Is the function - ADC_setInterruptCycleOffset not available in F28379D?
I couldn't find it in the adc.h header file.
Hi Anurag,
No, the ADC_setInterruptCycleOffset is not available for F28379D device. You can either generate an interrupt at the end of acquisition window or at the end of voltage conversion.
Regards,
Meghavi
Hi,
The only option then I have is to generate ADC interrupt at the end of conversion because conversion takes around 10.5 ADCCLK cycles which is 42 SYSCLKS with clk divider of 4. I wont be able to align my result fetch code in CLA with new ADC results.