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/LAUNCHXL-CC26X2R1: Unresolved symbol errors when trying to integrate simple_peripheral example with Sensor Controller

Part Number: LAUNCHXL-CC26X2R1

Tool/software: Code Composer Studio

Hello, I am somewhat new to CCS so this may be a relatively simple question but I am having some issues getting a slightly modified version of the simple_peripheral file that I have edited to interact with sensor controller to build without any errors. Specifically, the program is not recognizing the simplePeripheral_enqueueMsg() function nor the user_enqueueRawAppMsg() function. This results in the following error:

Description Resource Path Location Type
#10010 errors encountered during linking; "simple_peripheral_CC26X2R1_LAUNCHXL_tirtos_ccs.out" not built simple_peripheral_CC26X2R1_LAUNCHXL_tirtos_ccs C/C++ Problem

<a href="file:/C:/ti/ccs1010/ccs/tools/compiler/dmed/HTML/10234.html">#10234-D</a> unresolved symbols remain simple_peripheral_CC26X2R1_LAUNCHXL_tirtos_ccs C/C++ Problem

gmake: *** [all] Error 2 simple_peripheral_CC26X2R1_LAUNCHXL_tirtos_ccs C/C++ Problem

gmake[1]: *** [simple_peripheral_CC26X2R1_LAUNCHXL_tirtos_ccs.out] Error 1 simple_peripheral_CC26X2R1_LAUNCHXL_tirtos_ccs C/C++ Problem

unresolved symbol simplePeripheral_enqueueMsg, first referenced in <whole-program> simple_peripheral_CC26X2R1_LAUNCHXL_tirtos_ccs C/C++ Problem

This seems like an issue with a missing library or function definition, is there a file missing from my simple_peripheral directory that is responsible for this or is it something else? I have made sure to #include "scif.h" for this file as well.