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.
Tool/software: Code Composer Studio
Hi everyone,
we are using CCS 10 with:
Hi Clemens,
This would not be possible on the CC2642R in regards to the normal SRAM. This because the SRAM is initialized to "0" during early ROM boot as part of the ECC parity reset procedure.
To achieve what you want, I would recommend looking into using the AUX RAM to store this temporary information as this RAM is not part of the ECC protected SRAM. If you are not using the Sensor Controller then you should be fine writing/reading the memory as you see fit but if you are using the Sensor Controller then you would need to make sure to not interfere with it.
https://dev.ti.com/tirex/explore/node?node=AOFmdaK8impnxmEqGU3jkg__pTTHBmu__LATEST
In case you use the Sensor Controller, I would advice you "reserve" a range of RAM in the Sensor Controller application that you then later access from the ARM side (this is basically just a way to make sure that the memory you use is not part of the SC application code).
Hi MW,
Thanks for your fast reply.
ECC, Ok I see.
I have read the relating part about AUX RAM
because we use 4.10.
What I now don not understand:
In the linker command file cc26xx_app.cmd
, define the AUX_RAM memory area.
I don't have that nor any other cmd / linker command file. Only the auto generated FC2_B_Sample_CC26X2\Debug\configPkg\linker.cmd.
Is there a prototype anywhere to start from and how would i integrate it into the build?
Kind regards
Clemens
Hi M-W,
i just double checked:
In our application i see the following file being used in the command-line call for the ARM Linker:
-l"C:/ti/simplelink_cc13x2_26x2_sdk_4_10_00_78/examples/rtos/CC26X2R1_LAUNCHXL/ble5stack/simple_peripheral_oad_offchip/tirtos/ccs/cc13x2_cc26x2_app.cmd"
After searching through various option windows in CCS i found the location were that linker command file is specified:
So i guess that i can copy the file into the project, make my adaptions and adapt the Entry in the "library" compartment....
Kind regards
Clemens