diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-05-20 15:56:15 -0700 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-05-20 15:56:15 -0700 |
commit | b358e76047bc7481974b15a9e514b8ccf42e41ae (patch) | |
tree | 5d8280cacbda91b0140b2a020b74e9e602198d66 /Smol Watch Project/My Project/driver_init.h | |
parent | 7f2f09d3712ac72e54436b479ca2f2130b6e320d (diff) | |
download | Sensor-Watch-b358e76047bc7481974b15a9e514b8ccf42e41ae.tar.gz Sensor-Watch-b358e76047bc7481974b15a9e514b8ccf42e41ae.tar.bz2 Sensor-Watch-b358e76047bc7481974b15a9e514b8ccf42e41ae.zip |
use simple 8-bit counter for LED PWM
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 |