Issue using osThreadFlagsWait() function
Trying to use osThreadFlagsWait() in my command handler for command processing thread to save CPU utilization and seeing issue where system gets stall.====================while (1) { int cnt = getcmd(); if (cnt >= 0) { process_command(); } else...