Hello,
I am looking at the CMSIS, I have a question about using osThreadDef macro to define var:
osThreadDef(name, osPriorityNormal, 1, 0);
Why not define as below directly? what's the benefits?
osThreadDef_t os_thread_def_name = {name, osPriorityNormal, 1, 0};
Thanks.
View all questions in Keil forum