diff options
Diffstat (limited to 'Smol Watch Project/My Project/driver_init.h')
-rw-r--r-- | Smol Watch Project/My Project/driver_init.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Smol Watch Project/My Project/driver_init.h b/Smol Watch Project/My Project/driver_init.h index 107b1568..66ff8aac 100644 --- a/Smol Watch Project/My Project/driver_init.h +++ b/Smol Watch Project/My Project/driver_init.h @@ -30,8 +30,7 @@ extern "C" { #include <hal_i2c_m_sync.h> #include <hal_delay.h> -#include <hal_pwm.h> -#include <hpl_tc_base.h> +#include <tc_lite.h> #include <hal_pwm.h> #include <hpl_tcc.h> @@ -43,8 +42,6 @@ extern struct calendar_descriptor CALENDAR_0; extern struct i2c_m_sync_desc I2C_0; -extern struct pwm_descriptor PWM_0; - extern struct pwm_descriptor PWM_1; extern struct slcd_sync_descriptor SEGMENT_LCD_0; @@ -61,9 +58,11 @@ void I2C_0_PORT_init(void); void delay_driver_init(void); -void PWM_0_PORT_init(void); void PWM_0_CLOCK_init(void); -void PWM_0_init(void); + +void PWM_0_PORT_init(void); + +int8_t PWM_0_init(void); void PWM_1_PORT_init(void); void PWM_1_CLOCK_init(void); @@ -71,7 +70,7 @@ void PWM_1_init(void); void EXTERNAL_IRQ_0_init(void);
-void SEGMENT_LCD_0_init(void); +void SEGMENT_LCD_0_init(void);
/** * \brief Perform system initialization, initialize pins and clocks for |