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
commit d15630660b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}