Skip to content

Commit cf75ac9

Browse files
committed
esp32/machine_bitstream.c: Correct formatting for pre-commit
1 parent beaf7b5 commit cf75ac9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ports/esp32/machine_bitstream.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static void IRAM_ATTR machine_bitstream_high_low_bitbang(mp_hal_pin_obj_t pin, u
9393
/******************************************************************************/
9494
// RMT implementation
9595

96-
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5,3,0)
96+
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 3, 0)
9797
#include "rmt_private.h"
9898
#endif
9999
#include "driver/rmt_tx.h"
@@ -156,11 +156,11 @@ static void machine_bitstream_high_low_rmt(mp_hal_pin_obj_t pin, uint32_t *timin
156156
// Disable and release channel.
157157
check_esp_err(rmt_del_encoder(encoder));
158158
rmt_disable(channel);
159-
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5,3,0)
159+
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 3, 0)
160160
channel->del(channel);
161-
#else
161+
#else
162162
rmt_del_channel(channel);
163-
#endif
163+
#endif
164164

165165
// Cancel RMT output to GPIO pin.
166166
esp_rom_gpio_connect_out_signal(pin, SIG_GPIO_OUT_IDX, false, false);

0 commit comments

Comments
 (0)