aboutsummaryrefslogtreecommitdiff
path: root/dac.h
diff options
context:
space:
mode:
Diffstat (limited to 'dac.h')
-rw-r--r--dac.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/dac.h b/dac.h
new file mode 100644
index 0000000..f1494f4
--- /dev/null
+++ b/dac.h
@@ -0,0 +1,9 @@
+#ifndef _H_DAC
+#define _H_DAC
+
+#include <stdint.h>
+
+void dac_init(void);
+inline void dac_set(uint8_t value);
+
+#endif