Fixed some comments and updated the header comment

This commit is contained in:
Th3maz1ng 2025-12-26 12:08:09 +01:00
parent 9b03c9de9d
commit 0ac5bf1e72

View File

@ -1,7 +1,7 @@
/** /**
* Author : Anatole SCHRAMM-HENRY * Author : Anatole SCHRAMM-HENRY
* Created the : 11/07/2021 * 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 * 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); PCF.digitalReadAll(pinStates);
*(boolean *)p = true; *(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) if(pinStates[7] == HIGH)
{ {
LoRa.handleDio0Rise(); LoRa.handleDio0Rise();