20 lines
553 B
C
20 lines
553 B
C
/*************************** (C) COPYRIGHT 2017 CXHY ****************************
|
||
* 文件名 :usart5.h
|
||
* 描 述 :串口5驱动头文件代码
|
||
* 版 本 :V1.0
|
||
* 作 者 :XuZhongPing
|
||
* 日 期 :2017/03/15
|
||
*********************************************************************************/
|
||
#ifndef __USART_InterFace_H
|
||
#define __USART_InterFace_H
|
||
|
||
#include "stm32f10x.h"
|
||
#include "stdio.h"
|
||
|
||
void USART5_ReceiveDataHandler(uint8_t res);
|
||
|
||
#endif
|
||
|
||
|
||
/******************** (C) COPYRIGHT 2017 CXHY *****END OF FILE*******************/
|