Can I write into the SRAM of the PSOC6? I need help in changing the contents of the sram
Solved! Go to Solution.
uint8 address=0x80;
*((uint8*)address)=content value;
You can replace the 0x80 with the address you want to operate.
uint8 address=0x80;
*((uint8*)address)=content value;
You can replace the 0x80 with the address you want to operate.
Thanks Ring,
I am not able to locate the actual physical address of the SRAM. Is there any datasheet of the PSOC6 BLE-63, that mentions the starting address of the SRAM. And also can I power down all the blocks of the SRAM?
Maybe the below linker question can make sense for you: