📄 uart.h
字号:
/**************************************************************************** * * MODULE: uart.h * * COMPONENT: $RCSfile: $ * * VERSION: $Name: $ * * REVISION: $Revision: $ * * DATED: $Date: $ * * STATUS: $State: $ * * AUTHOR: Ian Morris * * DESCRIPTION * * CHANGE HISTORY: * * $Log: $ * * * LAST MODIFIED BY: $Author: pc1 $ * $Modtime: $ * * **************************************************************************** * * (c) Copyright 2000 JENNIC Ltd * ****************************************************************************/#ifndef UART_H_INCLUDED#define UART_H_INCLUDED#if defined __cplusplusextern "C" {#endif/****************************************************************************//*** Include Files ***//****************************************************************************/#include <jendefs.h>/****************************************************************************//*** Macro Definitions ***//****************************************************************************//****************************************************************************//*** Type Definitions ***//****************************************************************************//****************************************************************************//*** Exported Functions ***//****************************************************************************/PUBLIC void vUART_Init(void);PUBLIC void vUART_StartTx(void);PUBLIC void vUART_RxCharISR(uint8 u8RxChar);PUBLIC void vUART_TxCharISR(void);/****************************************************************************//*** Exported Variables ***//****************************************************************************/#if defined __cplusplus}#endif#endif /* UART_H_INCLUDED *//****************************************************************************//*** END OF FILE ***//****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -