aboutsummaryrefslogtreecommitdiffstats
path: root/source/dac.cpp
blob: 2116dcb277fbafbd73eea18a5b98e0d24d91ffb8 (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
/**
 * @file dac.cpp
 * @brief Manages signal creation using the DAC.
 *
 * 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 "dac.hpp"
#include "sclock.hpp"

DACDriver *DAC::m_driver[2] = {
    &DACD1, &DACD2
};

const DACConfig DAC::m_config = {
    .init = 0,
    .datamode = DAC_DHRM_12BIT_RIGHT,
    .cr = 0
};

const DACConversionGroup DAC::m_group_config = {
    .num_channels = 1,
    .end_cb = nullptr,
    .error_cb = nullptr,
    .trigger = 5 // TIM6_TRGO
};

void DAC::begin()
{
    palSetPadMode(GPIOA, 4, PAL_MODE_INPUT_ANALOG);
    palSetPadMode(GPIOA, 5, PAL_MODE_INPUT_ANALOG);

    dacStart(m_driver[0], &m_config);
    dacStart(m_driver[1], &m_config);
}

void DAC::start(int channel, dacsample_t *buffer, size_t count)
{
    if (channel >= 0 && channel < 2) {
        dacStartConversion(m_driver[channel], &m_group_config, buffer, count);
        SClock::start();
    }
}

void DAC::stop(int channel)
{
    if (channel >= 0 && channel < 2) {
        dacStopConversion(m_driver[channel]);
        SClock::stop();
    }
}