Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
Compiler Error 283
Table of Contents
qualified name is not allowed¶
A qualified name such as TextLCD::locate wasn't expected at this point in the code. For example you can't have such a method definition inside of another function definition.
void TextLCD::locate(int column, int row); { _column = column; _row = row; }