We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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?
int main(int argc, char *argv) any suggestions on how to fix it? easy as pie Main() can not have arguments Erik
"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