diff options
author | Damien George <damien.p.george@gmail.com> | 2020-03-27 00:35:04 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-03-28 23:36:44 +1100 |
commit | 1a3e386c67e03a79eb768cb6e9f6777e002d6660 (patch) | |
tree | 7e0b0620744e738bb281eb1c032b21a53558b8c0 /ports/esp32/esp32_rmt.c | |
parent | b56caaf104a196902efb23f324f7e290c6f3d291 (diff) |
all: Remove spaces inside and around parenthesis.
Using new options enabled in the uncrustify configuration.
Diffstat (limited to 'ports/esp32/esp32_rmt.c')
-rw-r--r-- | ports/esp32/esp32_rmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/esp32_rmt.c b/ports/esp32/esp32_rmt.c index 534b9017c..bacbde1f3 100644 --- a/ports/esp32/esp32_rmt.c +++ b/ports/esp32/esp32_rmt.c @@ -91,7 +91,7 @@ STATIC mp_obj_t esp32_rmt_make_new(const mp_obj_type_t *type, size_t n_args, siz rmt_config_t config; config.rmt_mode = RMT_MODE_TX; - config.channel = (rmt_channel_t) self->channel_id; + config.channel = (rmt_channel_t)self->channel_id; config.gpio_num = self->pin; config.mem_block_num = 1; config.tx_config.loop_en = 0; |