From efd1e8a1238af8eea53afa0d5acac071d73d1ea5 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sun, 25 Apr 2021 22:43:47 -0400 Subject: WIP simple C-based library for hacking on the watch --- Smol Watch Project/My Project/driver_init.h | 81 +++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 Smol Watch Project/My Project/driver_init.h (limited to 'Smol Watch Project/My Project/driver_init.h') diff --git a/Smol Watch Project/My Project/driver_init.h b/Smol Watch Project/My Project/driver_init.h new file mode 100644 index 00000000..54b83950 --- /dev/null +++ b/Smol Watch Project/My Project/driver_init.h @@ -0,0 +1,81 @@ +/* + * 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 +#include +#include +#include +#include +#include + +#include + +#include + +#include + +#include + +#include +#include +#include + +#include +#include +#include + +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); + +/** + * \brief Perform system initialization, initialize pins and clocks for + * peripherals + */ +void system_init(void); + +#ifdef __cplusplus +} +#endif +#endif // DRIVER_INIT_INCLUDED -- cgit v1.2.3