Part Number: TMS320F280039C-Q1
Other Parts Discussed in Thread: SYSCONFIG
Hello,
I have a functioning SDFM module which is receiving a voltage and outputting a value. I want to send this value to a variable I have defined in my program using the DMA
See below, the value from SDFM is currently being stored in test1 (in the mainloop of the program). That value is being held in ((int32_t *)(SDFM1_BASE + SDFM_O_SDDATA1 + 1)) which corresponds to the 32-bit value in 0x5E16 and 0x5E17.
But this value is not being transferred to the variable I have designated. I am unsure if my DMA settings are incorrect or if this issue lies elsewhere.
See DMA setting below:

I initialized the variable voltageCountsPtr based on another inquiry like this:
uint32_t voltageCounts[1];const void * voltageCountsPtr = voltageCounts;
