From 45a5aa6bd716ef05fa0a07a6b009910b23145183 Mon Sep 17 00:00:00 2001 From: lumapu Date: Tue, 16 May 2023 20:54:21 +0200 Subject: [PATCH] fix whitespaces --- src/hms/esp32_3wSpi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hms/esp32_3wSpi.h b/src/hms/esp32_3wSpi.h index 24774bbc..080e2251 100644 --- a/src/hms/esp32_3wSpi.h +++ b/src/hms/esp32_3wSpi.h @@ -162,13 +162,13 @@ class esp32_3wSpi { .rx_buffer = &rx_data }; - SPI_PARAM_LOCK(); + SPI_PARAM_LOCK(); for(uint8_t i = 0; i < len; i++) { ESP_ERROR_CHECK(spi_device_polling_transmit(spi_fifo, &t)); delayMicroseconds(4); // > 4 us buf[i] = rx_data; } - SPI_PARAM_UNLOCK(); + SPI_PARAM_UNLOCK(); } private: