More flexible InputPollable paradigm

This commit is contained in:
WillyJL
2025-09-24 03:05:26 +02:00
parent a1ca553bc0
commit 060a129995
3 changed files with 13 additions and 5 deletions

View File

@@ -60,7 +60,7 @@ class InputBroker : public Observable<const InputEvent *>
void registerSource(Observable<const InputEvent *> *source);
void injectInputEvent(const InputEvent *event) { handleInputEvent(event); }
#ifdef HAS_FREE_RTOS
void pollSoonRequestFromIsr(InputPollable *pollable);
void requestPollSoon(InputPollable *pollable);
void queueInputEvent(const InputEvent *event);
void processInputEventQueue();
#endif