Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Jan 10, 2025
1 parent 0f65b97 commit 3504dc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/analogIO/Wippersnapper_AnalogIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void Wippersnapper_AnalogIO::setADCResolution(int resolution) {
scaleAnalogRead = false; // handled in bsp (analogReadResolution)
analogReadResolution(resolution); // 16 bit values (shifted from 12 or 13bit)
#if defined(ESP32S3)
_nativeResolution = 13; // S3 ADC is 13-bit, others are 12-bit
_nativeResolution = 13; // S3 ADC is 13-bit, others are 12-bit
#else
_nativeResolution = 12;
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/components/i2c/drivers/WipperSnapper_I2C_Driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ class WipperSnapper_I2C_Driver {
@brief Enables the device's proximity sensor, if it exists.
*/
/*******************************************************************************/
virtual void enableSensorProximity(){};
virtual void enableSensorProximity() {};

/*******************************************************************************/
/*!
Expand Down
2 changes: 1 addition & 1 deletion src/components/uart/drivers/ws_uart_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class ws_uart_drv {
@brief Reads the UART device's data then packs and sends it to IO.
*/
/*******************************************************************************/
virtual void send_data(){};
virtual void send_data() {};

const char *uartTopic = nullptr; ///< UART device's MQTT topic
Adafruit_MQTT *mqttClient = nullptr; ///< Pointer to MQTT client object
Expand Down

0 comments on commit 3504dc9

Please sign in to comment.