summaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2020-08-18 15:54:50 -0400
committerLucian Copeland <hierophect@gmail.com>2020-08-18 15:54:50 -0400
commitdd425ee6c54deee72d0fa7cd42282b8157a54da6 (patch)
tree74595dac6096adff488535482bc924efe58dc1da /ports
parentda75445cd58d0fbf72c6b323b1b0bd53197f9cf3 (diff)
Remove breaking parenthesis
Diffstat (limited to 'ports')
-rw-r--r--ports/esp32s2/common-hal/pulseio/PulseOut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32s2/common-hal/pulseio/PulseOut.c b/ports/esp32s2/common-hal/pulseio/PulseOut.c
index a07ec39dc..d3c163ca8 100644
--- a/ports/esp32s2/common-hal/pulseio/PulseOut.c
+++ b/ports/esp32s2/common-hal/pulseio/PulseOut.c
@@ -86,6 +86,6 @@ void common_hal_pulseio_pulseout_send(pulseio_pulseout_obj_t* self, uint16_t* pu
rmt_write_items(self->channel, items, length, true);
while (rmt_wait_tx_done(self->channel, 0) != ESP_OK) {
- RUN_BACKGROUND_TASKS();
+ RUN_BACKGROUND_TASKS;
}
}