watch library: implement UART

This commit is contained in:
Joey Castillo
2022-01-26 19:31:49 -05:00
parent 71ea3b9de9
commit 0c78fdf535
5 changed files with 150 additions and 40 deletions

View File

@@ -33,6 +33,7 @@ extern "C" {
#include <hal_ext_irq.h>
#include <hal_i2c_m_sync.h>
#include <hal_spi_m_sync.h>
#include <hal_usart_sync.h>
#include <hal_delay.h>
#include <hal_slcd_sync.h>
@@ -40,6 +41,8 @@ extern struct adc_sync_descriptor ADC_0;
extern struct i2c_m_sync_desc I2C_0;
extern struct usart_sync_descriptor USART_0;
extern struct slcd_sync_descriptor SEGMENT_LCD_0;
void I2C_0_CLOCK_init(void);