Tool/software: Code Composer Studio
Hi,
I'd like to be able to write SRAM. I plan to use last quater of on-chip memory to store some data.
MEMORY
{
/* Bootloader uses FLASH_HDR during initialization */
FLASH_HDR (RX) : origin = 0x01000000, length = 0x7FF /* 2 KB */
FLASH (RX) : origin = 0x01000800, length = 0x0FF800 /* 1022KB */
SRAM (RWX) : origin = 0x20000000, length = 0x0002FFFF /* 192KB */
SRAM_W (RWX) : origin = 0x20030000, length = 0x00010000 /* 64KB */
}
chapter 5.8 Memory
5.8.2.1 SRAM
there is wrote "see the API guide"
I want to use the µDMA controller to transfer data to and from the SRAM, but i can't find examples or setup guides
Sincerely,
Migranov Niyaz