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.
hi can anyone tell me wat does this error mean??? C214:'argument':conversion:pointer to non pointer mean??
Even if the code is almost totally unreadable, because of the lack of formatting, it's obvious that you have errors.
This function expects an unsigned character as parameter. That is one single character.
void lcddata (unsigned char value);
This call does not send a single character, but a pointer to an array of characters:
lcddata("ERROR");
Why shouldn't the compiler complain when you send a pointer to a function that isn't expecting a pointer?
wouldn't VALUE=&VALUE++ help??i mean it increments the value and display the whole thing isn't it??And i am sorry tat i couldnt put it in proper format.
VALUE and &VALUE are two different things. &VALUE is the address of VALUE.
Do get a good book about the C language. This isn't a problem with embedded programming, but basic knowledge about C.