Files

copied
Last update 5 years 4 months
Filesfirmwaredrivers
..
sys_messagebus.c
sys_messagebus.h
timer_a0.c
timer_a0.h
uart1.c
uart1.h
uart1.h
#ifndef __UART1_H__ #define __UART1_H__ #include "proj.h" enum uart1_tevent { UART1_EV_RX = BIT0, UART1_EV_TX = BIT1 }; char uart1_rx_buf; void uart1_init(); uint16_t uart1_tx_str(char *str, uint16_t size); volatile enum uart1_tevent uart1_last_event; #endif
Report a bug