Remove breaking parenthesis

This commit is contained in:
Lucian Copeland 2020-08-18 15:54:50 -04:00
parent da75445cd5
commit dd425ee6c5

View File

@ -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;
}
}