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.

CCS/CC1352R: Adding UartLog to empty project

Part Number: CC1352R

Tool/software: Code Composer Studio

Hi
Is it possible to add UartLog to empty project as in the case of e.g. ble5_project_zero?

I add
#include <ti / common / cc26xx / uartlog / UartLog.h>

UART_init ();
UartLog_init (UART_open (CONFIG_UART_0, NULL));
Log_info0 ("test");

in predefined symbols I add UARTLOG_ENABLE

then an error pops up that it cannot find aon_rtc.h
after linking this library the program compiles but no logs show up

Display_printf (); works normally but I just care about UartLog.h

Thank you in advance