uart.h
来自「此程式庫有許多的zigbee程式源碼」· C头文件 代码 · 共 78 行
H
78 行
/**************************************************************************** * * 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 + =
减小字号Ctrl + -
显示快捷键?