Hi! I'm making a bunch of c/src files, and get:
syntax error; unexpected symbol: "EnableUART"
It is referenced in a driver.c file and defined in a .src file. It is XDEF'd correctly,
Here is the c snippet:
int main() {
EnableUART(0, 9600, 'N');
}
Any ideas of why something gives this error? TYTY