Skip to content
Prev Previous commit
FreeRTOS port: add setup() and loop() extern declaration
  • Loading branch information
pennam committed Feb 19, 2025
commit 11fb7288fabc59e5b3c5c363999caee6dc2b48e2
2 changes: 2 additions & 0 deletions libraries/Arduino_FreeRTOS/src/portable/FSP/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ static void prvTaskExitError(void);

#endif

extern void setup(void);
extern void loop(void);

static void sketch_thread_func(void* arg) {
bool early_start = (bool)arg;
Expand Down
Loading