22 lines
234 B
C++
22 lines
234 B
C++
#pragma once
|
|
|
|
#include "hardware.hpp"
|
|
|
|
#include "../io/io.hpp"
|
|
|
|
namespace adc {
|
|
|
|
template <typename... T>
|
|
struct Config {
|
|
};
|
|
|
|
template <typename Cfg, io::P pin>
|
|
class Adc {
|
|
public:
|
|
void read() {}
|
|
|
|
private:
|
|
};
|
|
|
|
} // namespace adc
|