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 all,
I am trying to write a very large (128kB at the moment) array to FRAM from the ADC. So far, I think I have set up the ADC to sample correctly, and have DMA transfers timed such that the sampling rate is 100 kHz.
My issue lies in the following code:
__data16_write_addr((unsigned short) &DMA0SA,(unsigned long) &ADC12MEM0); // Source fixed address (ADC12 memory) __data16_write_addr((unsigned short) &DMA0DA,(unsigned long) 0x24BFF); // Destination incremented address (FRAM, see datasheet)
The intrinsic functions I've found for write addresses are 16-bit, correct? And because they are 16-bit, I cannot access the register 0x24BFF in the FRAM? How can I make the destination address be recognized as 20-bit? I see other intrinsic functions, but none of them appear to be for addresses.
Currently, I get an error:
Description Resource Path Location Type
#770-D conversion from pointer to smaller integer MSP430FR5994_DAQ_main.c /16_GE_DAQ_v01 line 332 C/C++ Problem
This error applies to both lines of the above code.
I'm fairly new to this stuff, so any help is appreciated!
Thanks.
Technically you described a warning, not an error, that comes up even if you are using the function correctly for DMA transfers with large-data memory model enabled:
e2e.ti.com/.../395988
e2e.ti.com/.../63686
e2e.ti.com/.../1285241
The DMAxDA register is 20 bits wide and therefore the value 0x24BFF can be written to it, but you will need to use a __data20_write intrinsic:
e2e.ti.com/.../226399
Regards,
Ryan
Hi Ryan,
Thanks for linking those other forum posts, embarrassing that I didn't see them.
I find one thing odd about those lines of code: when I run my code and use the memory browser, the DMA is writing to the correct place in the FRAM! How is this possible with the intrinsic I am currently using?
Thanks,
Nathan
**Attention** This is a public forum