PIC32MZ

Detailed Description

Files

file  cpu_conf.h
 CPU definitions for Microchip PIC32MZ devices.
 
#define THREAD_EXTRA_STACKSIZE_PRINTF   (1024)
 Configuration of default stack sizes. More...
 
#define THREAD_STACKSIZE_DEFAULT   (2048)
 
#define THREAD_STACKSIZE_IDLE   (512 + THREAD_EXTRA_STACKSIZE_PRINTF)
 

Macro Definition Documentation

◆ THREAD_EXTRA_STACKSIZE_PRINTF

#define THREAD_EXTRA_STACKSIZE_PRINTF   (1024)

Configuration of default stack sizes.

printf takes a pretty tortured route through the C lib then via UHI syscall exception to end up at the UART driver.

When debugging timer code we get printfs on the idle threads stack which can easily blow its limits.

Note code must be compiled at -Os with these values, using -O0 you'll overflow these stacks.

NO ISR stack is in use yet, interrupt use the current running stack hence the big-ish default stack size.

Definition at line 54 of file cpu_conf.h.