Is it bad design to have a freeRTOS Task poll xTaskGetTickCount() with a vTaskDelay(1)?
I have a task which is responsible for triggering a pin, sometimes at a short period of a few ms. I created a freeRTOS Task which has a while(1) loop polling xTaskGetTickCount() with a vTaskDelay(1). If all my tasks have the same level priority ( f...