We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b6645 commit 708f830Copy full SHA for 708f830
src/components/analogIO/Wippersnapper_AnalogIO.cpp
@@ -15,6 +15,7 @@
15
*/
16
17
#include "Wippersnapper_AnalogIO.h"
18
+#include "Wippersnapper.h"
19
20
/***********************************************************************************/
21
/*!
@@ -87,7 +88,7 @@ void Wippersnapper_AnalogIO::setADCResolution(int resolution) {
87
88
analogReadResolution(16);
89
_nativeResolution = 12;
90
#elif defined(ARDUINO_ARCH_ESP32)
- scaleAnalogRead = false; // handled in bsp
91
+ scaleAnalogRead = true; // probably should be false, handled in bsp
92
_nativeResolution = 13; // S3 ADC is 13-bit, others are 12-bit
93
#elif defined(ARDUINO_ARCH_RP2040)
94
scaleAnalogRead = true;
0 commit comments