Merge branch 'develop' into fix/tlora-pager-rotary-amplifier

This commit is contained in:
Ben Meadors
2025-10-02 14:40:37 -05:00
committed by GitHub
87 changed files with 1428 additions and 491 deletions

View File

@@ -274,7 +274,12 @@ int32_t ButtonThread::runOnce()
}
}
btnEvent = BUTTON_EVENT_NONE;
return 50;
// only pull when the button is pressed, we get notified via IRQ on a new press
if (!userButton.isIdle() || waitingForLongPress) {
return 50;
}
return 100; // FIXME: Why can't we rely on interrupts and use INT32_MAX here?
}
/*