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

This commit is contained in:
GUVWAF
2025-11-01 16:48:04 -05:00
committed by GitHub
co-authored by GitHub
parent c46abe125c
commit bca0e1abde
3 changed files with 6 additions and 6 deletions
+1 -1
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