Skip to content

Commit 33e43d5

Browse files
committed
fix linker complaint
1 parent 6c1666e commit 33e43d5

File tree

2 files changed

+2
-28
lines changed

2 files changed

+2
-28
lines changed

src/Wippersnapper_demo.ino.cpp

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/components/display/drivers/dispDrvBase.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ class dispDrvBase {
7878
Whether to reset the display before initialization.
7979
@return True if the display was initialized successfully, false otherwise.
8080
*/
81-
virtual bool begin(thinkinkmode_t mode, bool reset = true);
81+
virtual bool begin(thinkinkmode_t mode, bool reset = true) { return false; }
8282

8383
/*!
8484
@brief Attempts to initialize a SPI TFT driver.
8585
@return True if the display was initialized successfully, false otherwise.
8686
*/
87-
virtual bool begin();
87+
virtual bool begin() { return false; }
8888

8989
/*!
9090
@brief Writes a message to the display.

0 commit comments

Comments
 (0)