aboutsummaryrefslogtreecommitdiffstats
path: root/source/dac.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/dac.hpp')
-rw-r--r--source/dac.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/source/dac.hpp b/source/dac.hpp
new file mode 100644
index 0000000..687e8cf
--- /dev/null
+++ b/source/dac.hpp
@@ -0,0 +1,24 @@
+#ifndef STMDSP_DAC_HPP_
+#define STMDSP_DAC_HPP_
+
+#include "hal.h"
+
+class DACd
+{
+public:
+ constexpr explicit DACd(DACDriver& driver, const DACConfig& config) :
+ m_driver(&driver), m_config(config) {}
+
+ void init();
+
+ void write(unsigned int channel, uint16_t value);
+
+private:
+ DACDriver *m_driver;
+ DACConfig m_config;
+
+ void initPins();
+};
+
+#endif // STMDSP_DAC_HPP_
+