You are viewing an older revision! See the latest version
Compiler Error 65
Expected a ";" (E65)¶
It is likely you have forgotten a ";" at the end of one of your statements.
Example:
#include "mbed.h"
DigitalOut buzzer(buzzer) // missing ;
int main() { // error actually reported on this line!
}
Note that the line number suggested by the error message will likely specify the next statement after the actual error, as this is the first time it will detect something is wrong.