diff options
Diffstat (limited to 'source/adc.cpp')
-rw-r--r-- | source/adc.cpp | 61 |
1 files changed, 33 insertions, 28 deletions
diff --git a/source/adc.cpp b/source/adc.cpp index bdfeea8..a830017 100644 --- a/source/adc.cpp +++ b/source/adc.cpp @@ -11,11 +11,12 @@ #include "adc.hpp" -ADCDriver *ADC::m_driver = &ADCD1; +ADCDriver *ADC::m_driver = &ADCD3; GPTDriver *ADC::m_timer = &GPTD6; const ADCConfig ADC::m_config = { - .difsel = 0 + .difsel = 0, + .calibration = 0, }; ADCConversionGroup ADC::m_group_config = { @@ -24,19 +25,23 @@ ADCConversionGroup ADC::m_group_config = { .end_cb = ADC::conversionCallback, .error_cb = nullptr, .cfgr = ADC_CFGR_EXTEN_RISING | ADC_CFGR_EXTSEL_SRC(13), /* TIM6_TRGO */ - .cfgr2 = ADC_CFGR2_ROVSE | ADC_CFGR2_OVSR_0 | ADC_CFGR2_OVSS_1, // Oversampling 2x - .tr1 = ADC_TR(0, 4095), + .cfgr2 = 0,//ADC_CFGR2_ROVSE | ADC_CFGR2_OVSR_0 | ADC_CFGR2_OVSS_1, // Oversampling 2x + .ccr = 0, + .pcsel = 0, + .ltr1 = 0, .htr1 = 0x0FFF, + .ltr2 = 0, .htr2 = 0x0FFF, + .ltr3 = 0, .htr3 = 0x0FFF, .smpr = { ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_12P5), 0 }, .sqr = { ADC_SQR1_SQ1_N(ADC_CHANNEL_IN5), 0, 0, 0 - } + }, }; const GPTConfig ADC::m_timer_config = { - .frequency = 36000000, + .frequency = 4800000, .callback = nullptr, .cr2 = TIM_CR2_MMS_1, /* TRGO */ .dier = 0 @@ -56,17 +61,17 @@ adcsample_t *ADC::m_current_buffer = nullptr; size_t ADC::m_current_buffer_size = 0; ADC::Operation ADC::m_operation = nullptr; -unsigned int ADC::m_timer_divisor = 2; +unsigned int ADC::m_timer_divisor = 50; void ADC::begin() { - palSetPadMode(GPIOA, 0, PAL_MODE_INPUT_ANALOG); + palSetPadMode(GPIOF, 3, PAL_MODE_INPUT_ANALOG); adcStart(m_driver, &m_config); adcSTM32EnableVREF(m_driver); gptStart(m_timer, &m_timer_config); - setRate(Rate::R32K); + //setRate(Rate::R32K); } void ADC::start(adcsample_t *buffer, size_t count, Operation operation) @@ -91,25 +96,25 @@ void ADC::stop() void ADC::setRate(ADC::Rate rate) { - auto& preset = m_rate_presets[static_cast<int>(rate)]; - auto pllnr = (preset[0] << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | - (preset[1] << RCC_PLLSAI2CFGR_PLLSAI2R_Pos); - bool oversample = preset[2] != 0; - m_timer_divisor = preset[3]; - - adcStop(m_driver); - - // Adjust PLLSAI2 - RCC->CR &= ~(RCC_CR_PLLSAI2ON); - while ((RCC->CR & RCC_CR_PLLSAI2RDY) == RCC_CR_PLLSAI2RDY); - RCC->PLLSAI2CFGR = (RCC->PLLSAI2CFGR & ~(RCC_PLLSAI2CFGR_PLLSAI2N_Msk | RCC_PLLSAI2CFGR_PLLSAI2R_Msk)) | pllnr; - RCC->CR |= RCC_CR_PLLSAI2ON; - while ((RCC->CR & RCC_CR_PLLSAI2RDY) != RCC_CR_PLLSAI2RDY); - - // Set 2x oversampling - m_group_config.cfgr2 = oversample ? ADC_CFGR2_ROVSE | ADC_CFGR2_OVSR_0 | ADC_CFGR2_OVSS_1 : 0; - - adcStart(m_driver, &m_config); +// auto& preset = m_rate_presets[static_cast<int>(rate)]; +// auto pllnr = (preset[0] << RCC_PLLSAI2CFGR_PLLSAI2N_Pos) | +// (preset[1] << RCC_PLLSAI2CFGR_PLLSAI2R_Pos); +// bool oversample = preset[2] != 0; +// m_timer_divisor = preset[3]; + +// adcStop(m_driver); +// +// // Adjust PLLSAI2 +// RCC->CR &= ~(RCC_CR_PLLSAI2ON); +// while ((RCC->CR & RCC_CR_PLLSAI2RDY) == RCC_CR_PLLSAI2RDY); +// RCC->PLLSAI2CFGR = (RCC->PLLSAI2CFGR & ~(RCC_PLLSAI2CFGR_PLLSAI2N_Msk | RCC_PLLSAI2CFGR_PLLSAI2R_Msk)) | pllnr; +// RCC->CR |= RCC_CR_PLLSAI2ON; +// while ((RCC->CR & RCC_CR_PLLSAI2RDY) != RCC_CR_PLLSAI2RDY); +// +// // Set 2x oversampling +// m_group_config.cfgr2 = oversample ? ADC_CFGR2_ROVSE | ADC_CFGR2_OVSR_0 | ADC_CFGR2_OVSS_1 : 0; +// +// adcStart(m_driver, &m_config); } void ADC::setOperation(ADC::Operation operation) |