aboutsummaryrefslogtreecommitdiffstats
path: root/source/sclock.cpp
blob: 317b9952937fcbac959b975690c07dd388fedb06 (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
/**
 * @file sclock.cpp
 * @brief Manages sampling rate clock speeds.
 *
 * Copyright (C) 2021 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 "sclock.hpp"

GPTDriver *SClock::m_timer = &GPTD6;
unsigned int SClock::m_div = 1;
unsigned int SClock::m_runcount = 0;

const GPTConfig SClock::m_timer_config = {
#if defined(TARGET_PLATFORM_H7)
    .frequency = 4800000,
#else
    .frequency = 36000000,
#endif
    .callback = nullptr,
    .cr2 = TIM_CR2_MMS_1, /* TRGO */
    .dier = 0
};

const std::array<unsigned int, 6> SClock::m_rate_divs = {{
#if defined(TARGET_PLATFORM_H7)
    /* 8k  */ 600,
    /* 16k */ 300,
    /* 20k */ 240,
    /* 32k */ 150,
    /* 48k */ 100,
    /* 96k */ 50
#else
    4500, 2250, 1800, 1125, 750, 375
#endif
}};

void SClock::begin()
{
    gptStart(m_timer, &m_timer_config);
}

void SClock::start()
{
    if (m_runcount++ == 0)
        gptStartContinuous(m_timer, m_div);
}

void SClock::stop()
{
    if (--m_runcount == 0)
        gptStopTimer(m_timer);
}

void SClock::setRate(SClock::Rate rate)
{
    m_div = m_rate_divs[static_cast<unsigned int>(rate)];
}

unsigned int SClock::getRate()
{
    for (unsigned int i = 0; i < m_rate_divs.size(); ++i) {
        if (m_rate_divs[i] == m_div)
            return i;
    }

    return static_cast<unsigned int>(-1);
}