Part Number: CC2640R2F
Other Parts Discussed in Thread: CC2650, CC2640
Tool/software: Code Composer Studio
Hi,
in my project I use the ble_sdk_2_02_01_18, I try to upgrade to ble_sdk_2_02_02_25.
I start from the example (cc2650lp/simple_np), the first step is to change the device used ( I use the CC2640R2F), after some modification at the code:
1) I need to comment the:
--entry_point ResetISR in cc26x0r2f.cmd in simple_np_cc2650lp_stack
to avoid error on ResetISR
and I exclude from build cc26x0f128 in simple_np_cc2650lp_app and ccs26xx_app.cmd (simple_np_cc2650lp_app/TOOLS)
to avoid the problem of redefined parameters (i.e. FLASH (RX),....).
2) I have modify the cc26x0r2f.cmd in simple_np_cc2650lp_app, adding:
GROUP > SRAM
{
.data
.bss
.vtable
.vtable_ram
vtable_ram
.sysmem
.nonretenvar
} LOAD_END(heapStart)
.stack : > SRAM (HIGH) LOAD_START(heapEnd)
to avoid problem of heapStart and heapEnd unresolved symbol.
the debug run without mistakes. but when it complete the resum button is gray.
If I run only the debug of simple_np_cc2650lp_stack the resume button is green.
Why does it appen?
An other question, with ble_sdk_2_02_01_18 I can use the XDCtools 3.50.5.12 version, with the ble_sdk_2_02_02_25 I have to use 3.32.0.06 version otherwiseI have error.
Why with a new versiopn of BLE_SDK do I need to use an old version of XDCtools?
Thanks.
Best regards.
Giuseppe