Zephyr C++ Toolkit
Loading...
Searching...
No Matches
AdcReal.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "IAdc.hpp"
4
5namespace zct {
6
7class AdcReal : public IAdc {
8public:
9 AdcReal(const char* name, const struct adc_dt_spec * adcSpec);
10 ~AdcReal();
11
17 int32_t readMv() override;
18
19protected:
20 const struct adc_dt_spec * m_adcSpec;
21};
22
23} // namespace zct
Definition AdcReal.hpp:7
int32_t readMv() override
Definition AdcReal.cpp:24
const struct adc_dt_spec * m_adcSpec
Definition AdcReal.hpp:20
~AdcReal()
Definition AdcReal.cpp:22
Definition IAdc.hpp:8
Definition Mutex.hpp:6