* Put something on screen * Use the 32bit watch_date_time repr to pass from JS * Implement periodic callbacks * Clear display on enabling * Hook up watch_set_led_color() to SVG (green-only) * Make debug output full-width * Remove default Emscripten canvas * Implement sleep and button clicks * Fix time zone conversion bug in beats-time app * Clean up warnings * Fix pin levels * Set time zone to browser value (if available) * Add basic backup data saving * Silence format specifier warnings in both targets * Remove unnecessary, copied files * Use RTC pointer to clear callbacks (if available) * Use preprocessor define to avoid hardcoding MOVEMENT_NUM_FACES * Change each face to const preprocessor definition * Remove Intl.DateTimeFormat usage * Update shell.html title, header * Add touch start/end event handlers on SVG buttons * Update shell.html * Update folder structure (shared, simulator, hardware under watch-library) * Tease out shared components from watch_slcd * Clean up simulator watch_slcd.c inline JS calls * Fix missing newlines at end of file * Add simulator warnings (except format, unused-paremter) * Implement remaining watch_rtc functions * Fix button bug on mouse down then drag out * Implement remaining watch_slcd functions * Link keyboard events to buttons (for keys A, L, M) * Rewrite event handling (mouse, touch, keyboard) in C * Set explicit text UTF-8 charset in shell.html * Address PR comments * Remove unused directories from include paths
60 lines
1.3 KiB
C
60 lines
1.3 KiB
C
/*
|
|
* 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
|
|
|
|
#define GPIO_PIN_FUNCTION_A 0
|
|
#define GPIO_PIN_FUNCTION_B 1
|
|
#define GPIO_PIN_FUNCTION_C 2
|
|
#define GPIO_PIN_FUNCTION_D 3
|
|
#define GPIO_PIN_FUNCTION_E 4
|
|
#define GPIO_PIN_FUNCTION_F 5
|
|
#define GPIO_PIN_FUNCTION_G 6
|
|
#define GPIO_PIN_FUNCTION_H 7
|
|
#define GPIO_PIN_FUNCTION_I 8
|
|
|
|
#include "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_ext_irq.h>
|
|
#include <hal_i2c_m_sync.h>
|
|
#include <hal_spi_m_sync.h>
|
|
#include <hal_delay.h>
|
|
#include <hal_slcd_sync.h>
|
|
|
|
extern struct adc_sync_descriptor ADC_0;
|
|
|
|
extern struct i2c_m_sync_desc I2C_0;
|
|
|
|
extern struct slcd_sync_descriptor SEGMENT_LCD_0;
|
|
|
|
void I2C_0_CLOCK_init(void);
|
|
void I2C_0_init(void);
|
|
void I2C_0_PORT_init(void);
|
|
|
|
void delay_driver_init(void);
|
|
|
|
void EXTERNAL_IRQ_0_init(void);
|
|
|
|
void SEGMENT_LCD_0_PORT_init(void);
|
|
void SEGMENT_LCD_0_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // DRIVER_INIT_INCLUDED
|