summaryrefslogtreecommitdiff
path: root/pcr-controller/pwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'pcr-controller/pwm.h')
-rw-r--r--pcr-controller/pwm.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/pcr-controller/pwm.h b/pcr-controller/pwm.h
new file mode 100644
index 0000000..2459cd3
--- /dev/null
+++ b/pcr-controller/pwm.h
@@ -0,0 +1,11 @@
+#ifndef PWM_H_INCLUDED_
+#define PWM_H_INCLUDED_
+
+#include <avr/io.h>
+
+void pwm_init(void);
+void pwm_b5_set(uint8_t val);
+void pwm_d7_set(uint8_t val);
+
+
+#endif