Skip to content

Commit 91b4984

Browse files
committed
Remove debug logging + format document
1 parent 7982926 commit 91b4984

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/components/analogIO/Wippersnapper_AnalogIO.cpp

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,7 @@ void Wippersnapper_AnalogIO::setADCResolution(int resolution) {
107107
The scaled analog resolution, in bits.
108108
*/
109109
/***********************************************************************************/
110-
int Wippersnapper_AnalogIO::getADCresolution() {
111-
WS_DEBUG_PRINT("Returning ADC resolution: ");
112-
WS_DEBUG_PRINTLN(_adcResolution);
113-
return _adcResolution;
114-
}
110+
int Wippersnapper_AnalogIO::getADCresolution() { return _adcResolution; }
115111

116112
/***********************************************************************************/
117113
/*!
@@ -120,11 +116,7 @@ int Wippersnapper_AnalogIO::getADCresolution() {
120116
The native analog resolution, in bits.
121117
*/
122118
/***********************************************************************************/
123-
int Wippersnapper_AnalogIO::getNativeResolution() {
124-
WS_DEBUG_PRINT("Returning native ADC resolution: ");
125-
WS_DEBUG_PRINTLN(_nativeResolution);
126-
return _nativeResolution;
127-
}
119+
int Wippersnapper_AnalogIO::getNativeResolution() { return _nativeResolution; }
128120

129121
/***********************************************************************************/
130122
/*!

0 commit comments

Comments
 (0)