We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289452c commit 81660e6Copy full SHA for 81660e6
libraries/MultiThreading/examples/Queue/Queue.ino
@@ -77,7 +77,6 @@ void TaskWriteToSerial(void *pvParameters){ // This is a task.
77
int ret = xQueueReceive(QueueHandle, &message, portMAX_DELAY);
78
if(ret == pdPASS){
79
// The message was successfully received - send it back to Serial port and "Echo: "
80
- //Serial.printf("Echo: \"%s\"\n", line);
81
Serial.printf("Echo line of size %d: \"%s\"\n", message.line_length, message.line);
82
// The item is queued by copy, not by reference, so lets free the buffer after use.
83
}else if(ret == pdFALSE){
0 commit comments