Other Parts Discussed in Thread: CC2650, , SYSBIOS
Tool/software: Code Composer Studio
I use a CC2640R2F launchpad as the development platform. The example program TI provided for this platform uses the Display_print function to print log output over the UART. This is different from what I have previously used on the CC2650 platform, which uses Log_info/warning/error over UART. The Display_print function has a major disadvantage over Log, since one has to provide it the line and column number to print the message to. It cannot linearly output as the Log function does, and also tends to overwrite previous log output. For me I would prefer a line after line logging for the benefit of error tracing.
The way I went was to follow the wiki here: http://processors.wiki.ti.com/index.php/CC26xx_Ouput_TI-RTOS_Log_statements_over_UART, using the XDC logging module. However, after adding the necessary code into the TI-RTOS config file (TOOLS/app_ble.cfg), the compiler gives me the following warnings:
utils.importFile("common/cc26xx/kernel/cc2640/config/cc2640_r2_csdk.cfg"); utils.importFile("common/cc26xx/kernel/cc2640/config/ble_stack_heap.cfg");
I would appreciate if anyone can provide any help!