Skip to content

Commit

Permalink
Fix freertos sys examples (#499)
Browse files Browse the repository at this point in the history
Increase stack size.
  • Loading branch information
peterharperuk authored Jun 13, 2024
1 parent 28f4b95 commit e38b215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pico_w/wifi/freertos/FreeRTOSConfig_examples_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#define configUSE_TICK_HOOK 0
#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
#define configMAX_PRIORITIES 32
#define configMINIMAL_STACK_SIZE ( configSTACK_DEPTH_TYPE ) 256
#define configMINIMAL_STACK_SIZE ( configSTACK_DEPTH_TYPE ) 512
#define configUSE_16_BIT_TICKS 0

#define configIDLE_SHOULD_YIELD 1
Expand Down
2 changes: 1 addition & 1 deletion pico_w/wifi/freertos/ping/lwipopts.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#if !NO_SYS
#define TCPIP_THREAD_STACKSIZE 1024
#define DEFAULT_THREAD_STACKSIZE 1024
#define DEFAULT_THREAD_STACKSIZE 2048
#define DEFAULT_RAW_RECVMBOX_SIZE 8
#define TCPIP_MBOX_SIZE 8
#define LWIP_TIMEVAL_PRIVATE 0
Expand Down

0 comments on commit e38b215

Please sign in to comment.