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.
Hello,
I have a full working code with Slave SSI and uDMA in ping-pong mode to get data from an ADC.
Now I want to store the data into the internal Flash.
But when I try to program data to the internal flash with the FlashProgram API while the uDMA is in progress, the interrupt handler of the DMA is called in loop with the IRQ DMARX but DMA mode doesn't indicate any completed DMA.
Could someone give me any advice?
Is there any restrictions to use uDMA in ping-pong mode while programming the internal flash?
Regards,
Nicolas
Hi Charles,
I want to use the internal FLASH because the EEPROM is too small, only 6kB.
I have a data rate of 2bits at 8MHz and I need to record as much as possible.
Nicolas
Hello,
I tried to run all my code from SRAM, but ISR of SSI for DMA RX doesn't seem to run.
Any idea?
Nicolas
Hi Charles,
To avoid flash access when running software during the log of data into the flash, I try to run all the software application from SRAM. Currently, I use the debugger, so I expect there is no need to copy application from flash to SRAM. I just change the "ccs.cmd" file to map all sections to SRAM.
When I put all sections into the SRAM, the ISR for RX DMA of SSI peripheral is never entered. I double checked the RXDMAE bit and it is well set to 1.
But if I keep the sections ".intvecs" into the FLASH, no problem with the ISR...
Nicolas
Hi Nicolas,
Yes, you need to have the intvecs at 0x0. After you erase the flash and load the code the address 0x0 and 0x4 are all F's if you didn't have the .intvecs mapped to 0x0, right?