mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-21 18:57:16 +08:00
Merge pull request #1234 from emlslxl/fix-uart
fix uart register address structure type
This commit is contained in:
@@ -74,9 +74,9 @@ struct tina_uart
|
||||
|
||||
typedef struct tina_uart *tina_uart_t;
|
||||
|
||||
#define UART0 ((tina_gpio_t)UART0_BASE_ADDR)
|
||||
#define UART1 ((tina_gpio_t)UART1_BASE_ADDR)
|
||||
#define UART2 ((tina_gpio_t)UART2_BASE_ADDR)
|
||||
#define UART0 ((tina_uart_t)UART0_BASE_ADDR)
|
||||
#define UART1 ((tina_uart_t)UART1_BASE_ADDR)
|
||||
#define UART2 ((tina_uart_t)UART2_BASE_ADDR)
|
||||
|
||||
int rt_hw_uart_init(void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user