Skip to content
Snippets Groups Projects
Select Git revision
0 results

serial.c

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    • schneider's avatar
      f7719151
      fix(serial): Unblock if the queue is full · f7719151
      schneider authored
      For some reason a portYIELD() is not enough to give the serial task the
      option to run. I tried vTaskDelay() and that works. To not block more than
      needed portYIELD() is still called when the queue is not full and only
      call vTaskDelay() when it is full.
      
      Closes #218
      f7719151
      History
      fix(serial): Unblock if the queue is full
      schneider authored
      For some reason a portYIELD() is not enough to give the serial task the
      option to run. I tried vTaskDelay() and that works. To not block more than
      needed portYIELD() is still called when the queue is not full and only
      call vTaskDelay() when it is full.
      
      Closes #218