From d35a6fe886c98829232b928b3494d86b124592c9 Mon Sep 17 00:00:00 2001 From: Mitch Weisbrod Date: Wed, 8 Jun 2022 16:42:10 -0700 Subject: [PATCH] update comments --- examples/DMXRead/DMXRead.ino | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/DMXRead/DMXRead.ino b/examples/DMXRead/DMXRead.ino index 7dd4cd9e4..1153cbd0c 100644 --- a/examples/DMXRead/DMXRead.ino +++ b/examples/DMXRead/DMXRead.ino @@ -81,9 +81,10 @@ void loop() { dmx_event_t packet; /* And now we wait! The DMX standard defines the amount of time until DMX - officially times out. That amount of time is converted into ESP32 clock ticks - using the constant `DMX_RX_PACKET_TOUT_TICK`. If it takes longer than that - amount of time to receive data, this if statement will evaluate to false. */ + officially times out. That amount of time is converted into ESP32 clock + ticks using the constant `DMX_PACKET_TIMEOUT_TICK`. If it takes longer than + that amount of time to receive data, this if statement will evaluate to + false. */ if (xQueueReceive(queue, &packet, DMX_PACKET_TIMEOUT_TICK)) { /* If this code gets called, it means we've received DMX data! */