Tool/software: TI C/C++ Compiler
Hi everyone
I create a task using the XGCONF GUI. The settings are shown in the screenshot below:
My main.cpp file:
void uart(UArg arg0, UArg arg1) { // coding here } int main(void) { Board_initGeneral(); BIOS_start(); return (0); }
An error occurs during compilation:
unresolved symbol uart, first referenced in C:\Users\rushestm\workspace_v8\uartecho_CC2650STK_TI_CC2650F128\Debug\configPkg\package\cfg\uartecho_pem3.oem3
If I create the task without gui, it's works properly.
What could be my mistake?
Thank you in advance