4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 07:39:33 +08:00
Bernard Xiong 2cf49c58f5
Merge pull request #4571 from yangjie11/bsp-to-apache
[bsp]update GPL license to Apache-2.0, and format license
2021-04-10 13:51:35 +08:00

23 lines
360 B
C

/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
*/
#ifndef __UART_H__
#define __UART_H__
#define RX_PIN_NUMBER 25
#define TX_PIN_NUMBER 24
#define CTS_PIN_NUMBER 26
#define RTS_PIN_NUMBER 27
#define HWFC false
void rt_hw_uart_init(void);
#endif