Part Number: CC2640 Tool/software: TI C/C++ Compiler I am trying to prefill the stack with 0x55.
I tried modifying the .stack section by adding the fill command:
SECTIONS {
.
.
.stack : > SRAM (HIGH) LOAD_START(heapEnd), fill = 0x55
}
…
Hi Jan,
I'm using CC2652PSIP, The linker command file cc13x2_cc26x2_app_tirtos7.cmd was not changed.
There is only one post-build step is present:
"${CCS_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin" "${BuildArtifactFileName}" "${BuildArtifactFileBaseName…
Part Number: CC2652R7 Hi
SDK using : simplelink_cc13xx_cc26xx_sdk_7_10_01_24
Code Using : simple_peripheral_LP_CC2652R7_tirtos7_ticlang
We are using the default SDK code without any modification.
In project properties -> build -> steps -> Post…
Part Number: CC1311P3 Hi Everyone,
I'm trying to flash a 1311 through the ROM bootloader. The bootloader part is not problem, I can communicate, erase sectors and flash a program. I can't generate a binary to flash to the controller though....
The…
The expected bootload update procedure is detailed in Chapter 8 of the TRM, which I recommend you read through entirely. You also have sblAppEx source code to reference. The .bin file is built using post-build steps
${CG_TOOL_ROOT}/bin/tiarmobjcopy…
Part Number: CC1352P Hi Ryan and Yikai,
How are you?
CCS v12.2.0.0009 was used to build ZNP example (SDK6.40).
Post-build steps:
${CG_TOOL_ROOT}/bin/tiarmobjcopy ${BuildArtifactFileName} --output-target ihex ${BuildArtifactFileBaseName}.hex $…
Hi Nelson,
There are some small changes to the post build step from that thread which refers to a different product line. Please add this line in the post build step.
${CCS_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin ${BuildArtifactFileName} ${ProjName…
Part Number: CC2652PSIP Hello,
In order to implement firmware upgrade feature for CC2652PSIP, some functions must be executed from RAM. The .map-file shows that function is located in RAM, but size of binary file is more than 0x20,000,000, the expected…
Thanks Ryan Brown1,
For our application and BIM we use post-build steps as shown below: "${CG_TOOL_HEX}" -order MS --memwidth=8 --romwidth=8 --intel -o "${ProjName}.hex" "${ProjName}.out" "${CCS_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin" "${BuildArtifactFileName…