Part Number: CC2650RC
Other Parts Discussed in Thread: CC2650
Tool/software: Code Composer Studio
Hello,
I am trying to port Simple Central example for CC2650 LaunchPad to CC2650RC remote from ble_sdk_2_02_01_18 package. To port that I changed board include to CC2650RC so it will choose correct board configuration file. And I verified that it's using correct board type as I tried to blink Red/Green LEDs on the remote using toggle timer and it's working. But somehow after starting device in Central mode ideally it should get GAP_DEVICE_INIT_DONE_EVENT and all basic BLE initialization should start away but finding that after putting debugger on that, it's not coming to that place. So either something wrong with configuring this project or stack firmware is not right.
To debug that if problem is related to wrong BLE stack firmware, I tried 3 different firmwares for that from BLE sdk as it is.
1. simple_central_cc2650lp_stack - Not working (In application firmware trying to toggle LEDs based on switch inputs)
2. simple_central_audio_receiver_cc2650lp_stack - Working (In application firmware trying to toggle LEDs based on switch inputs) - But still BLE initialization is not happening in app firmware.
3. hid_adv_remote_privacy_cc2650rc_stack - Working (In application firmware trying to toggle LEDs based on switch inputs) - But still BLE initialization is not happening in app firmware.
And while porting project I also need to disable UART display and commented all display prints otherwise I was not able to compile project successfully as compiler was complaining about some file under "ti/mw/display" so maybe need some change in project configuration for that?
Display Error:
unresolved symbol Display_config, first referenced in C:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/tidrivers_cc13xx_cc26xx_2_20_01_10/packages/ti/mw/display/lib/display.aem3<Display.oem3>
So please someone can help me with this? Thanks in advance!