From bedd90bedede4bc6242be1acb23c5e5a363db525 Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Tue, 24 Apr 2018 22:37:20 +0200 Subject: [PATCH] v1.3.21 --- src/globals.h | 6 +++--- src/main.cpp | 2 +- src/main.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/globals.h b/src/globals.h index 1b861002..35bc74ff 100644 --- a/src/globals.h +++ b/src/globals.h @@ -3,11 +3,11 @@ // std::set for unified array functions #include -//#include -//#include +#include +#include +// OLED Display #ifdef HAS_DISPLAY - // OLED Display #include #endif diff --git a/src/main.cpp b/src/main.cpp index e97b84e9..5a78ca77 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -553,7 +553,7 @@ void loop() { // simple state machine for controlling display, LED, button, etc. uptimecounter = uptime() / 1000; // counts uptime in seconds (64bit) - currentMillis = millis(); // timebase for state machine in milliseconds (32bit) + currentMillis = millis(); // timebase for state machine in milliseconds (32bit) #ifdef HAS_LED switchLEDstate(); diff --git a/src/main.h b/src/main.h index d92ed7a2..438d70cd 100644 --- a/src/main.h +++ b/src/main.h @@ -1,6 +1,6 @@ // program version - note: increment version after modifications to configData_t struct!! -#define PROGVERSION "1.3.2" // use max 10 chars here! +#define PROGVERSION "1.3.21" // use max 10 chars here! #define PROGNAME "PAXCNT" //--- Declarations ---