Other Parts Discussed in Thread: C2000WARE,
Hi C2000 team.
Could you provide an example transferring a ADC result buffer to a RAM buffer using DMA.
BR
Anders Lange
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 C2000 team.
Could you provide an example transferring a ADC result buffer to a RAM buffer using DMA.
BR
Anders Lange
Hi Anders,
The following example was suggested:
adc_soc_continuous_dma
which can be found in C2000Ware here:
C:\ti\c2000\C2000Ware_1_00_05_00\device_support\f2837xd\examples\cpu1\adc_soc_continuous_dma\cpu01
The issue was found.
After adding the #PRAGMA to make sure the buffers was placed in GSRAM the DMA worked as described:
#pragma DATA_SECTION(TestSource, "ramgs0");
#pragma DATA_SECTION(TestDestination, "ramgs0");
BR
Anders Lange