From 0eed29b99ef3b636ba4501c4bd63d526f3903c0f Mon Sep 17 00:00:00 2001 From: lincomatic Date: Sun, 16 Mar 2025 16:49:55 -0700 Subject: [PATCH] fix compilation error --- src/helpers/CustomLLCC68.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/CustomLLCC68.h b/src/helpers/CustomLLCC68.h index 9d829934..49a49ca7 100644 --- a/src/helpers/CustomLLCC68.h +++ b/src/helpers/CustomLLCC68.h @@ -9,7 +9,7 @@ class CustomLLCC68 : public LLCC68 { CustomLLCC68(Module *mod) : LLCC68(mod) { } bool isReceiving() { - uint16_t irq = getIrqStatus(); + uint16_t irq = getIrqFlags(); bool hasPreamble = (irq & SX126X_IRQ_HEADER_VALID); return hasPreamble; }