blob: 24a7fff2b82471d3745c3fcb35832c3bbb377b87 (
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
|
/**
* @file adc.hpp
* @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/>.
*/
#ifndef STMDSP_ADC_HPP_
#define STMDSP_ADC_HPP_
#include "hal.h"
#include "sclock.hpp"
#include <array>
class ADC
{
public:
using Operation = void (*)(adcsample_t *buffer, size_t count);
static void begin();
static void start(adcsample_t *buffer, size_t count, Operation operation);
static void stop();
static adcsample_t readAlt(unsigned int id);
static void setRate(SClock::Rate rate);
static void setOperation(Operation operation);
private:
static ADCDriver *m_driver;
static ADCDriver *m_driver2;
static const ADCConfig m_config;
static const ADCConfig m_config2;
static ADCConversionGroup m_group_config;
static ADCConversionGroup m_group_config2;
static adcsample_t *m_current_buffer;
static size_t m_current_buffer_size;
static Operation m_operation;
public:
static void conversionCallback(ADCDriver *);
};
#endif // STMDSP_ADC_HPP_
|