diff --git a/inc/pwmout.h b/inc/pwmout.h new file mode 100644 --- /dev/null +++ b/inc/pwmout.h @@ -0,0 +1,15 @@ +#ifndef PWMOUT_H +#define PWMOUT_H + + +#define SSR_PIN GPIO_PIN_7 +#define SSR_GPIO_Port GPIOB +#define SSR SSR_GPIO_Port, SSR_PIN + + + +void pwmout_init(void); +void pwmout_process(float duty); + + +#endif