diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-08-02 13:48:35 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-08-02 14:36:04 -0400 |
commit | 34945d78e933fc62bedcc975e88be02a0b7fcc2e (patch) | |
tree | 317edc18fe08d76a1f5d8c3aabf88cf58ba73897 /watch-library/hw/driver_init.h | |
parent | 2d1e2e8c76623543817f4c62b26fc300c1fd0d2c (diff) | |
download | Sensor-Watch-34945d78e933fc62bedcc975e88be02a0b7fcc2e.tar.gz Sensor-Watch-34945d78e933fc62bedcc975e88be02a0b7fcc2e.tar.bz2 Sensor-Watch-34945d78e933fc62bedcc975e88be02a0b7fcc2e.zip |
major project reorg, move library one level up
Diffstat (limited to 'watch-library/hw/driver_init.h')
-rw-r--r-- | watch-library/hw/driver_init.h | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/watch-library/hw/driver_init.h b/watch-library/hw/driver_init.h new file mode 100644 index 00000000..1e53f9a0 --- /dev/null +++ b/watch-library/hw/driver_init.h @@ -0,0 +1,80 @@ +/* + * Code generated from Atmel Start. + * + * This file will be overwritten when reconfiguring your Atmel Start project. + * Please copy examples or other code you want to keep to a separate file + * to avoid losing it when reconfiguring. + */ +#ifndef DRIVER_INIT_INCLUDED +#define DRIVER_INIT_INCLUDED + +#include "atmel_start_pins.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#include <hal_atomic.h> +#include <hal_delay.h> +#include <hal_gpio.h> +#include <hal_init.h> +#include <hal_io.h> +#include <hal_sleep.h> + +#include <hal_adc_sync.h> + +#include <hal_ext_irq.h> + +#include <hal_calendar.h> + +#include <hal_i2c_m_sync.h> + +#include <hal_delay.h> +#include <hpl_tc_base.h> +#include <hal_pwm.h> +#include <hpl_tc_base.h> + +#include <hal_pwm.h> +#include <hpl_tcc.h> +#include <hal_slcd_sync.h> + +extern struct adc_sync_descriptor ADC_0; + +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; + +void ADC_0_PORT_init(void); +void ADC_0_CLOCK_init(void); +void ADC_0_init(void); + +void CALENDAR_0_CLOCK_init(void); +void CALENDAR_0_init(void); + +void I2C_0_CLOCK_init(void); +void I2C_0_init(void); +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_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); + +#ifdef __cplusplus +} +#endif +#endif // DRIVER_INIT_INCLUDED |