Skip to content
Snippets Groups Projects
Commit fcf7e115 authored by Fabrice Weinberg's avatar Fabrice Weinberg
Browse files

Fix bug in virtual functions definition to fix vtable lookup error.

parent edd9d1e4
No related branches found
No related tags found
No related merge requests found
......@@ -247,10 +247,10 @@ class OLEDDisplay : public Print {
char *logBuffer = NULL;
// Send a command to the display (low level function)
virtual void sendCommand(uint8_t com);
virtual void sendCommand(uint8_t com) {};
// Connect to the display
virtual bool connect();
virtual bool connect() {};
// Send all the init commands
void sendInitCommands();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment