Skip to content

Commit e45a391

Browse files
committed
Clang-format analogio.h + cpp
1 parent 4fb596e commit e45a391

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/analogIO/Wippersnapper_AnalogIO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void Wippersnapper_AnalogIO::setADCResolution(int resolution) {
9090
scaleAnalogRead = false; // handled in bsp (analogReadResolution)
9191
analogReadResolution(resolution); // 16 bit values (shifted from 12 or 13bit)
9292
#if defined(ESP32S3)
93-
_nativeResolution = 13; // S3 ADC is 13-bit, others are 12-bit
93+
_nativeResolution = 13; // S3 ADC is 13-bit, others are 12-bit
9494
#else
9595
_nativeResolution = 12;
9696
#endif

src/components/analogIO/Wippersnapper_AnalogIO.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ class Wippersnapper_AnalogIO {
6363
void setADCResolution(int resolution);
6464
int getADCresolution();
6565
int getNativeResolution();
66-
bool timerExpired(long currentTime, analogInputPin pin, long periodOffset = 0);
66+
bool timerExpired(long currentTime, analogInputPin pin,
67+
long periodOffset = 0);
6768

6869
void update();
6970
bool encodePinEvent(

0 commit comments

Comments
 (0)