Zephyr C++ Toolkit
Loading...
Searching...
No Matches
IAdc.hpp
Go to the documentation of this file.
1#pragma once
2
3// System includes
4#include <cstdint>
5
6namespace zct {
7
8class IAdc {
9public:
10 IAdc(const char* name);
11
12 ~IAdc();
13
19 virtual int32_t readMv() = 0;
20
21protected:
22 const char* m_name;
23};
24
25} // namespace zct
Definition IAdc.hpp:8
~IAdc()
Definition IAdc.cpp:14
virtual int32_t readMv()=0
const char * m_name
Definition IAdc.hpp:22
Definition Mutex.hpp:6