Merge pull request #114 from lincomatic/pr-llcc68

Add ProMicroLLCC68 builds
This commit is contained in:
ripplebiz
2025-03-18 13:45:03 +11:00
committed by GitHub
6 changed files with 90 additions and 1 deletions

View File

@@ -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;
}