17 lines
344 B
C
17 lines
344 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2013-05-18 Bernard The first version for LPC40xx
|
|
* 2014-07-18 ArdaFu Port to TM4C129X
|
|
*/
|
|
#ifndef __UART_H__
|
|
#define __UART_H__
|
|
|
|
void rt_hw_uart_init(void);
|
|
|
|
#endif
|