TI C2000 ADC Output
18 次查看(过去 30 天)
显示 更早的评论
Hi,
I am using Embeded coder to code a PLL on C2000 F28388D micro-controller. I am using ADC to read my grid voltages and sychronize my PWM with them. For de-bugging purposes, I am also sending the data from ADC over serial port to view it in Simulink. However, when I visulize the ADC data on a scope in Simulink, I recieve a 3.2kHz grid voltage, however, my ADC input signal is only 400 Hz,
First I thought may be I need to configure my simulink scope somehow, but later when I check the value of constants in my loop they also correspond to 3.2kHz. This frequency also changes when I change the sample time of ADC block. And to make things even more weird, I real world, when I connect my DSP to a scope, I could see that my PWMs are synchronized with 400Hz signal.
Can any one please let me know what I am doing wrong? I have attached both simulink files, PLL Coder and HOST data Recieve file.
Thank you .
0 个评论
回答(2 个)
Dr. Pemendra Kumar Pardhi
2020-4-21
The observed, scope signal is differ from actual signal that means your actual signal is 400Hz frequancy but from scope you observed signal of 3.2kHz, however change in sample time of ADC then frequancy is also veried.
I have also suffer from same problem, but whenever signal is again taken from DAC of TI kit its frequancy is same as input signal frequancy. it proof that inside the simulink model frequancy remain same as input signal. only problem is occure due to selected bourd rate in simulink model setting, I will sugested you select proper bourd rate in matlab simulink model according to your C2000 F28388D micro-controller.
You may also follow the given advices in following link
Thanks
Pemendra Kumar Pardhi
Venkatesh Chilapur
2020-4-21
Hi,
If the ADC input is 400HZ singal, any reason why the ADC sampling is done at high sample rate of 2usec?
I think this is cause of the problem. The model has other blocks like discrete controller which is unlikely the model is running at the given step time. Now the serial block is sending the ADC value everytime the model is able to schedule its execution probably overrunning. The serial block may be sending duplicate values at different instances in time and hence the resutling waveform. The ADC sampling has an direct impact on this overall performance. And when you change it, it will give different results.
The best way to get around this issue is to trigger the ADC via an ePWM module.
That will run under interrupt context and the rest of the model step time can be relaxed to run the algorithm.
Please refer this video on ADC PWM synchronization.
https://www.youtube.com/watch?v=wxYTLbYfBP0
HTH,
Regards,
Venkatesh C
8 个评论
Aditya Padmanabha
2020-4-24
编辑:Aditya Padmanabha
2020-4-24
Hi Bilal,
F2838x support in R2019b release was partial with limited number of peripherals. In R2020a release all peripherals including external interrupts were added for F2838x board with ARM core support as well. Check out the release notes for more details https://www.mathworks.com/help/supportpkg/texasinstrumentsc2000/release-notes.html.
I agree with you on the part that the ADCINT provided in latest processors works differently compared to the SEQINT in F2833x processors. However you can try to use other ways to collect the data from ADC. You can try to use DMA configured to trigger with ADCINT to read and move the data into a buffer.
Thanks,
Aditya
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Event Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!