We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
These are miscellaneous useful notes about how ChibiOS functions.
From ChibiOS crt0.c:
Two stacks available for Cortex-M, main stack or process stack.
ChibiOS configures the Cortex-M in dual-stack mode. (CONTROL[1]=1) When CONTROL[1]=1, PSP is used when the processor is in Thread mode.
MSP is always used when the processor is in Handler mode.
After chSysInit(), the current instructions stream (usually main()) becomes the main thread.