4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 13:03:42 +08:00
ZhuXW 85e2d6b85b !338 增加Vango V85xxp(V85xx衍生版本)
* add file
* add mdk5 project, update file
* update readme
* add V85xxp first version
2022-03-28 03:14:09 +00:00

29 lines
575 B
C

/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-01-04 iysheng first version
* 2021-09-07 FuC Suit for V85xx
* 2021-09-12 ZhuXW Suit for V85xxP
*/
#ifndef __DRV_USART_H__
#define __DRV_USART_H__
#include <rthw.h>
#include <rtthread.h>
/* V85XXP uart driver */
struct V85xxP_uart {
UART_Type * uart_periph;
IRQn_Type irqn;
struct rt_serial_device *serial;
char *device_name;
};
#endif