From 674b400fbf0506e779aded7afbda811293c2e995 Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Fri, 26 Dec 2025 12:08:09 +0100 Subject: [PATCH] Fixed some comments and updated the header comment --- src/app/app.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/app.ino b/src/app/app.ino index 12c28a1..cb33803 100644 --- a/src/app/app.ino +++ b/src/app/app.ino @@ -1,7 +1,7 @@ /** * Author : Anatole SCHRAMM-HENRY * Created the : 11/07/2021 - * Last updated : 04/11/2025 + * Last updated : 21/12/2025 * This is a quick and dirty gateway firmware to receive and save data from sensors to a database */ @@ -104,7 +104,7 @@ IRAM_ATTR void PCFIRQHandler(void *p) PCF.digitalReadAll(pinStates); *(boolean *)p = true; - /* If the IRQ pin is the DIO1, manually call the LoRa IRQ handler */ + /* If the IRQ pin is the DIO0, manually call the LoRa IRQ handler */ if(pinStates[7] == HIGH) { LoRa.handleDio0Rise();