aboutsummaryrefslogtreecommitdiffstats
path: root/source/adc.cpp
blob: 609ffce7f222ab55573bc1f981ef43adcba68515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/**
 * @file adc.cpp
 * @brief Manages signal reading through the ADC.
 *
 * Copyright (C) 2020 Clyne Sullivan
 *
 * Distributed under the GNU GPL v3 or later. You should have received a copy of
 * the GNU General Public License along with this program.
 * If not, see <https://www.gnu.org/licenses/>.
 */

#include "adc.hpp"

constexpr static const auto adcd = &ADCD1;
constexpr static const auto gptd = &GPTD4;

constexpr static const ADCConfig adc_config = {
    .difsel = 0
};

static void adc_read_callback(ADCDriver *);

/*constexpr*/ static ADCConversionGroup adc_group_config = {
    .circular = false,
    .num_channels = 1,
    .end_cb = adc_read_callback,
    .error_cb = nullptr,
    .cfgr = ADC_CFGR_EXTEN_RISING | ADC_CFGR_EXTSEL_SRC(12),  /* TIM4_TRGO */
    .cfgr2 = 0,
    .tr1 = ADC_TR(0, 4095),
    .smpr = {
        ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_247P5), 0
    },
    .sqr = {
        ADC_SQR1_SQ1_N(ADC_CHANNEL_IN5),
        0, 0, 0
    }
};

constexpr static const GPTConfig gpt_config = {
    .frequency = 1000000,
    .callback = nullptr,
    .cr2 = TIM_CR2_MMS_1, /* TRGO */
    .dier = 0
};

static bool adc_is_read_finished = false;

void adc_read_callback([[maybe_unused]] ADCDriver *driver)
{
    gptStopTimer(gptd);
    adc_is_read_finished = true;
}

namespace adc
{
    void init()
    {
        palSetPadMode(GPIOA, 0, PAL_MODE_INPUT_ANALOG);
    
        gptStart(gptd, &gpt_config);
        adcStart(adcd, &adc_config);
        adcSTM32EnableVREF(adcd);
    }
    
    adcsample_t *read(adcsample_t *buffer, size_t count)
    {
        adc_is_read_finished = false;
        adcStartConversion(adcd, &adc_group_config, buffer, count);
        gptStartContinuous(gptd, 100); // 10kHz
        while (!adc_is_read_finished);
        return buffer;
    }
 
    void set_rate(rate r)
    {
        uint32_t val = 0;
    
        switch (r) {
        case rate::R2P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_2P5);
            break;
        case rate::R6P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_6P5);
            break;
        case rate::R12P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_12P5);
            break;
        case rate::R24P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_24P5);
            break;
        case rate::R47P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_47P5);
            break;
        case rate::R92P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_92P5);
            break;
        case rate::R247P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_247P5);
            break;
        case rate::R640P5:
            val = ADC_SMPR1_SMP_AN5(ADC_SMPR_SMP_640P5);
            break;
        }
    
        adc_group_config.smpr[0] = val;
    }
}