Fix boot on RP2040 by excluding new FreeRTOS task (#8508)

This commit is contained in:
GUVWAF
2025-11-01 22:48:04 +01:00
committed by GitHub
parent c46abe125c
commit bca0e1abde
3 changed files with 6 additions and 6 deletions

View File

@@ -1595,7 +1595,7 @@ void loop()
#endif
service->loop();
#if !MESHTASTIC_EXCLUDE_INPUTBROKER && defined(HAS_FREE_RTOS)
#if !MESHTASTIC_EXCLUDE_INPUTBROKER && defined(HAS_FREE_RTOS) && !defined(ARCH_RP2040)
if (inputBroker)
inputBroker->processInputEventQueue();
#endif