diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-05-02 13:07:51 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-05-02 13:07:51 -0400 |
commit | 9b381ef6ae36844e32452047b05b01f15893a2dc (patch) | |
tree | 8394c04b96f625dec258385c529f9aeae03d7483 /Smol Watch Project/My Project/driver_init.h | |
parent | 68bada3006a627e704680c0161f597e585b37e7f (diff) | |
download | Sensor-Watch-9b381ef6ae36844e32452047b05b01f15893a2dc.tar.gz Sensor-Watch-9b381ef6ae36844e32452047b05b01f15893a2dc.tar.bz2 Sensor-Watch-9b381ef6ae36844e32452047b05b01f15893a2dc.zip |
WIP timer wakeup stuff
Diffstat (limited to 'Smol Watch Project/My Project/driver_init.h')
-rw-r--r-- | Smol Watch Project/My Project/driver_init.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Smol Watch Project/My Project/driver_init.h b/Smol Watch Project/My Project/driver_init.h index 8ed98cb6..99062100 100644 --- a/Smol Watch Project/My Project/driver_init.h +++ b/Smol Watch Project/My Project/driver_init.h @@ -30,6 +30,8 @@ extern "C" { #include <hal_i2c_m_sync.h> #include <hal_delay.h> +#include <hal_timer.h> +#include <hpl_tc_base.h> #include <hal_pwm.h> #include <hpl_tc_base.h> @@ -43,6 +45,8 @@ extern struct calendar_descriptor CALENDAR_0; extern struct i2c_m_sync_desc I2C_0; +extern struct timer_descriptor TIMER_0; + extern struct pwm_descriptor PWM_0; extern struct pwm_descriptor PWM_1; @@ -61,6 +65,8 @@ void I2C_0_PORT_init(void); void delay_driver_init(void); +void TIMER_0_init(void); + void PWM_0_PORT_init(void); void PWM_0_CLOCK_init(void); void PWM_0_init(void); @@ -69,9 +75,9 @@ void PWM_1_PORT_init(void); void PWM_1_CLOCK_init(void); void PWM_1_init(void); -void EXTERNAL_IRQ_0_init(void); - -void SEGMENT_LCD_0_init(void); +void EXTERNAL_IRQ_0_init(void);
+
+void SEGMENT_LCD_0_init(void);
/** * \brief Perform system initialization, initialize pins and clocks for |