Timeline for Why does exit status 1 stray '\302' in program pop up around Serial.println ( "-> Second Service load");?
Current License: CC BY-SA 3.0
5 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| May 23, 2017 at 12:37 | history | edited | CommunityBot | replaced http://stackoverflow.com/ with https://stackoverflow.com/ | |
| Nov 7, 2016 at 15:42 | comment | added | James Waldby - jwpat7 | The error message will have a line number that points you to (or near) the line causing an error. If the error is in one of the uint8_t wake_HOUR1 = 12; ... uint8_t wake_MINUTE2 = 30; lines, it probably is a simple typo, like an extra or missing character. Each of those lines should be of the form uint8_t somevariablename=somevalue; where somevalue should be an integer, like 0, 1, ... 7, 8, 9, 10, 11 ... 59. A value expressed as 08 or 09 instead of 8 or 9 would produce an error because 8 and 9 are not octal digits. A missing semicolon or no space after uint8_t also is an error. | |
| Nov 7, 2016 at 15:11 | vote | accept | Jasmine Parham | ||
| Nov 7, 2016 at 15:10 | comment | added | Jasmine Parham | I retyped my code on a new sketch and it uploaded successfully but i tried to change the times to see if my RTC code uploaded accurately instead of just successfully I tried changing the numbers on wake hours and minutes and now i have a compiling error. | |
| Nov 4, 2016 at 16:23 | history | answered | James Waldby - jwpat7 | CC BY-SA 3.0 |