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.
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?
Hello,
Please see the below troubleshooting tip for the error you see:
https://software-dl.ti.com/ccs/esd/documents/sdto_ccs_build-errors.html#error-10234-d-unresolved-symbols-remain
For you case, please make sure the library that defines the symbols in question is added top your project.
Thanks
ki