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.

RTOS/CC2650: cc2650 log messege

Part Number: CC2650

Tool/software: TI-RTOS

Hello,

Currently I am working on cc2650 Launch Pad project zero.
Using Android app: BLE Scanner I'm communicating with the launchpad.
Using app I'm able to send data to cC2650 and then further transmitting the same data uart. Using terminal software I'm able to view the uart data
For example if I send "Hello" from app to launchpad, I am able to See data as follows
#0001[10.645] "project Zero.c" Line 966 :Hello

The problem is I only want to transmit Hello and ignore the remaining part.
How is the other part generated in Uart communication and how can I remove it.

  • Hi Komal,

    You can use the display driver instead of Log_info.

    1) Remove Display_DISABLE_ALL from the list of compiler predefines (Project -> Properties -> Build -> ARM Compiler -> Predefined Symbols).
    2) Replace Log_-functions with Display_print-functions.

    You can see the implementation in out other examples, e.g. Simple Peripheral.