From 18b148ed1f42fa5a20d949a6b2a8a1621b096eed Mon Sep 17 00:00:00 2001 From: Neil McKechnie Date: Fri, 10 Feb 2023 15:35:17 +0000 Subject: [PATCH] IO_EXFastClock - fix compile error due to closing brace outside of #if block. --- IO_EXFastclock.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/IO_EXFastclock.h b/IO_EXFastclock.h index 442799b..923f922 100644 --- a/IO_EXFastclock.h +++ b/IO_EXFastclock.h @@ -109,16 +109,14 @@ void _loop(unsigned long currentMicros) override{ // As the minimum clock increment is 2 seconds delay a bit - say 1 sec. // Clock interval is 60/ clockspeed i.e 60/b seconds delayUntil(currentMicros + ((60/b) * 1000000)); - - } #endif } - +} // Display EX-FastClock device driver info. - void _display() { + void _display() override { DIAG(F("FastCLock on I2C:%s - %S"), _I2CAddress.toString(), (_deviceState==DEVSTATE_FAILED) ? F("OFFLINE") : F("")); }