24 lines
467 B
C
24 lines
467 B
C
/*
|
|
* File : usart.h
|
|
* This file is part of RT-Thread RTOS
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2017-12-12 Bluebear233 first implementation
|
|
*/
|
|
|
|
#ifndef __USART_H__
|
|
#define __USART_H__
|
|
|
|
/**
|
|
* 硬件串口注册
|
|
*/
|
|
void rt_hw_usart_init(void);
|
|
|
|
|
|
#endif /* __USART_H__ */
|