From 7cc6be320de5d4c8207c43d03fd204da98c06f6c Mon Sep 17 00:00:00 2001 From: rbaron Date: Fri, 17 Dec 2021 18:18:24 +0100 Subject: [PATCH] Adds comment for periodic time printing --- Firmware/src/app.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Firmware/src/app.c b/Firmware/src/app.c index e2b0449..dc59222 100644 --- a/Firmware/src/app.c +++ b/Firmware/src/app.c @@ -64,6 +64,7 @@ _attribute_ram_code_ void main_loop() if (current_unix_time - last_update > 30) { last_update = current_unix_time; + // Uncomment this line to periodically have the display refreshed with the current time. // epd_display(current_unix_time); } if (epd_state_handler()) // if epd_update is ongoing enable gpio wakeup to put the display to sleep as fast as possible