Fix Heltec V3 missed button presses (#8167)

This commit is contained in:
Ben Meadors
2025-09-30 08:05:00 -05:00
committed by GitHub
parent a1c658a467
commit ee6857511a

View File

@@ -279,7 +279,7 @@ int32_t ButtonThread::runOnce()
if (!userButton.isIdle() || waitingForLongPress) {
return 50;
}
return INT32_MAX;
return 100; // FIXME: Why can't we rely on interrupts and use INT32_MAX here?
}
/*