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/AM3358: unresolved symbols remain error #10010: errors encountered during linking; "FW_UART.out" not built

Part Number: AM3358

Tool/software: Code Composer Studio

Hello,

I am trying to use the UART API using the AM335x (BeagleBone Black) and i have included all the required header files but i still get the "error #10234-D: unresolved symbols remain"

undefined         first referenced
  symbol               in file     
 ---------         ----------------
 Board_init        ./fw_uart.obj   
 PRCMModuleEnable  ./fw_uart.obj   
 UART_socGetFwCfg  ./fw_uart.obj   
 UART_socInitFwCfg ./fw_uart.obj   

i have included these files : 

#include <ti/drv/uart/UART.h>
#include <ti/drv/uart/UART_stdio.h>
#include <ti/drv/uart/soc/UART_soc.h>
#include <ti/drv/uart/firmware/icss_uart/src/icss_uart.h>
//#include <ti/drv/uart/src/v2/UART_v2.h>


#include <ti/csl/csl_chip.h>

/* Board Header files */
#include <ti/board/board.h>
#include <ti/starterware/include/prcm.h>

 

how can I fix this ? or if I am doing something wrong can you please correct me?