Skip to content

Commit

Permalink
Compilation issues with latest version of Freertos
Browse files Browse the repository at this point in the history
  • Loading branch information
peterharperuk committed Oct 4, 2023
1 parent eca13ac commit 6a4bbd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pico_w/wifi/freertos/iperf/FreeRTOSConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@
#if FREE_RTOS_KERNEL_SMP // set by the RP2040 SMP port of FreeRTOS
/* SMP port only */
#define configNUM_CORES 2
#define configNUMBER_OF_CORES configNUM_CORES
#define configTICK_CORE 0
#define configRUN_MULTIPLE_PRIORITIES 1
#define configUSE_CORE_AFFINITY 1
#define configUSE_MINIMAL_IDLE_HOOK 0
#endif

/* RP2040 specific */
Expand Down
2 changes: 2 additions & 0 deletions pico_w/wifi/freertos/ping/FreeRTOSConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@
#if FREE_RTOS_KERNEL_SMP // set by the RP2040 SMP port of FreeRTOS
/* SMP port only */
#define configNUM_CORES 2
#define configNUMBER_OF_CORES configNUM_CORES
#define configTICK_CORE 0
#define configRUN_MULTIPLE_PRIORITIES 1
#define configUSE_CORE_AFFINITY 1
#define configUSE_MINIMAL_IDLE_HOOK 0
#endif

/* RP2040 specific */
Expand Down

1 comment on commit 6a4bbd1

@peterharperuk
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

configUSE_MINIMAL_IDLE_HOOK has changed to configUSE_PASSIVE_IDLE_HOOK

Please sign in to comment.