summaryrefslogtreecommitdiff
path: root/keyboards/tzarc/ghoul/rev1/rp2040/config.h
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2023-01-19 11:13:39 +1100
committerGitHub <noreply@github.com>2023-01-19 11:13:39 +1100
commitbaecc69da5c6fc9961392f77e5a7d8d2e095b69a (patch)
tree8a021a2da8d3fa28738cdee7ccf38870ebe16bb6 /keyboards/tzarc/ghoul/rev1/rp2040/config.h
parent4723f308adb7d1d4a4136722e2f576a398695559 (diff)
Add support for current/voltage measurement on Ghoul. (#19630)
Diffstat (limited to 'keyboards/tzarc/ghoul/rev1/rp2040/config.h')
-rw-r--r--keyboards/tzarc/ghoul/rev1/rp2040/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/tzarc/ghoul/rev1/rp2040/config.h b/keyboards/tzarc/ghoul/rev1/rp2040/config.h
index c428b26606..43379b5763 100644
--- a/keyboards/tzarc/ghoul/rev1/rp2040/config.h
+++ b/keyboards/tzarc/ghoul/rev1/rp2040/config.h
@@ -28,8 +28,8 @@
#define RGB_ENABLE_PIN GP6
// ADC Configuration
-#define ADC_RESOLUTION ? ? ? // ADC_CFGR1_RES_12BIT // TBD when RP2040 has analog support
-#define ADC_SATURATION ? ? ? // ((1 << 12) - 1) // TBD when RP2040 has analog support
+#define ADC_RESOLUTION 12
+#define ADC_SATURATION ((1 << 12) - 1)
#define ADC_CURRENT_PIN GP26
#define ADC_VOLTAGE_PIN GP27