You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CM0 CM0+: interrupts disabled beween xTaskCreate() and vTaskStartScheduler()
On Cortex-M0 and Cortex-M0+, all IT are disabled between xTaskCreate() and
vTaskStartScheduler().
So it is not possible to use IT inbetween, like Serial.print() ...
This is the reason why, in example "frLiyLayland", between xTaskCreate()
and vTaskStartScheduler(),
we use direct printf(), which will access directly USART without interrupt
Signed-off-by: Alexandre Bourdiol <alexandre.bourdiol@st.com>
0 commit comments