aboutsummaryrefslogtreecommitdiffstats
path: root/source/adc.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-10-22 09:17:25 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-10-22 09:17:25 -0400
commit4b523f98c86f7f953b5c19fe414811c27857d78a (patch)
tree08e2d1be74bd2e2c8b41930920c055ccb9e472f8 /source/adc.cpp
parentee274be303987c28fd26e88411378557f1ff566b (diff)
fix timer settings
Diffstat (limited to 'source/adc.cpp')
-rw-r--r--source/adc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/adc.cpp b/source/adc.cpp
index 84620a2..9fd3285 100644
--- a/source/adc.cpp
+++ b/source/adc.cpp
@@ -12,7 +12,7 @@
#include "adc.hpp"
constexpr static const auto adcd = &ADCD1;
-constexpr static const auto gptd = &GPTD7;
+constexpr static const auto gptd = &GPTD6;
constexpr static const ADCConfig adc_config = {
.difsel = 0
@@ -25,7 +25,7 @@ static ADCConversionGroup adc_group_config = {
.num_channels = 1,
.end_cb = adc_read_callback,
.error_cb = nullptr,
- .cfgr = ADC_CFGR_EXTEN_RISING | ADC_CFGR_EXTSEL_SRC(12), /* TIM4_TRGO */
+ .cfgr = ADC_CFGR_EXTEN_RISING | ADC_CFGR_EXTSEL_SRC(13), /* TIM4_TRGO */
.cfgr2 = 0,//ADC_CFGR2_ROVSE | ADC_CFGR2_OVSR_0 | ADC_CFGR2_OVSS_1, // Oversampling 2x
.tr1 = ADC_TR(0, 4095),
.smpr = {