Calling Printf() in task

Hi, I’m using Printf() task. Is calling printf() in task can destroy the functionality of the API prvTaskCheckFreeStackSpace() ?

Calling Printf() in task

printf won’t break stack checking, but printf can use a lot of stack, so it is easy for it to overflow the stack if you don’t allocate enough.

Calling Printf() in task

Ok Richard. Thank you !