?? 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 + -