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/CC2640R2F: debugging error using bluetooth project with uart

Part Number: CC2640R2F
Other Parts Discussed in Thread: BLE-STACK, , CC2650, CC2640

Tool/software: TI-RTOS

hello

I have a project in IAR using Bluetooth chip. My aim is to debug events sent to the chip using log_info0, I studied the project zero in another pc but could not figure out what the problem is

I ve the following lines

#include <ti/drivers/UART.h>

#include <xdc/runtime/Log.h>

#include <ti/drivers/uart/UARTCC26xx.h>

in the main I have

main ()

{

Power_init(); PWM_init(); I2C_init();

UART_init();

....

}

when I compile the project I get :

Error [Li005]: no definition for UART_count [referenced from UART.orm3(drivers_cc26x0r2.arm3)]

Error[Li005]: no definition for UART_config  [referenced from UART.orm3(drivers_cc26x0r2.arm3)]

Is there a header missing?