Implement HAS_PHYSICAL_KEYBOARD for devices with physical keyboards (#9071)

- Implement HAS_PHYSICAL_KEYBOARD for devices with physical keyboards
- Add HAS_PHYSICAL_KEYBOARD to variant.h for:
  - TDeck
  - TLora Pager
  - TDeck Pro
This commit is contained in:
Jason P
2025-12-26 07:34:25 -06:00
committed by GitHub
parent 9da4396c6f
commit ef530db44c
7 changed files with 12 additions and 0 deletions

View File

@@ -29,7 +29,9 @@ bool UpDownInterruptImpl1::init()
eventDownLong, UpDownInterruptImpl1::handleIntDown, UpDownInterruptImpl1::handleIntUp,
UpDownInterruptImpl1::handleIntPressed);
inputBroker->registerSource(this);
#ifndef HAS_PHYSICAL_KEYBOARD
osk_found = true;
#endif
return true;
}