I have an error that says: error: two or more data types in declaration of 'main'. This is my declaration of main: int main(int argc, char *argv) any suggestions on how to fix it?
"Main() can not have arguments" To be precise, Main() can not have arguments in an embedded system.
int main(int argc, char *argv) Hmmm. I wonder what arguments should be passed to main in an embedded program? Jon
Maybe the same ones passed in DKARM blinky.c ;-) Bradford