Implements a queue to transmit text from one RTOS task to another.
Definition: textqueue.h:94
virtual size_t write(uint8_t a_char)
Write a character into the queue in the Print style.
Definition: textqueue.h:124
TextQueue(BaseType_t queue_size, const char *p_name=NULL, TickType_t wait_time=portMAX_DELAY)
Construct a queue object, allocating memory for the buffer.
Definition: textqueue.h:112
bool put(const char item)
Put an item into the queue behind other items.
Definition: taskqueue.h:504