Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
someweisguy committed Jun 8, 2022
1 parent 0bae4c2 commit d35a6fe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/DMXRead/DMXRead.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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! */
Expand Down

0 comments on commit d35a6fe

Please sign in to comment.