📄 appqueueapi.h
字号:
/***************************************************************************** * * MODULE: Application API header * * COMPONENT: $RCSfile: AppQueueApi.h,v $ * * VERSION: $Name: zed003_cd $ * * REVISION: $Revision: 1.2 $ * * DATED: $Date: 2005/12/06 14:29:03 $ * * STATUS: $State: Exp $ * * AUTHOR: CJG * * DESCRIPTION: * Access functions and structures used by the application to interact with * the Jennic 802.15.4 stack. * * LAST MODIFIED BY: $Author: cjg $ * $Modtime: $ * **************************************************************************** * * (c) Copyright JENNIC Ltd 2005 * ****************************************************************************/#ifndef APP_Q_API_H_INCLUDED#define APP_Q_API_H_INCLUDED#if defined __cplusplusextern "C" {#endif/****************************************************************************//*** Include Files ***//****************************************************************************/#include <jendefs.h>#include <mac_sap.h>#include <AppApi.h>/****************************************************************************//*** Macro Definitions ***//****************************************************************************//****************************************************************************//*** Type Definitions ***//****************************************************************************/typedef void (*PR_QIND_CALLBACK)(void);typedef void (*PR_HWQINT_CALLBACK)(void);typedef struct{ uint32 u32DeviceId; uint32 u32ItemBitmap;} AppQApiHwInd_s;/****************************************************************************//*** Exported Functions ***//****************************************************************************/PUBLIC uint32 u32AppQApiInit(PR_QIND_CALLBACK prMlmeCallback, PR_QIND_CALLBACK prMcpsCallback, PR_HWQINT_CALLBACK prHwCallback);PUBLIC MAC_MlmeDcfmInd_s *psAppQApiReadMlmeInd(void);PUBLIC MAC_McpsDcfmInd_s *psAppQApiReadMcpsInd(void);PUBLIC AppQApiHwInd_s *psAppQApiReadHwInd(void);PUBLIC void vAppQApiReturnMlmeIndBuffer(MAC_MlmeDcfmInd_s *psBuffer);PUBLIC void vAppQApiReturnMcpsIndBuffer(MAC_McpsDcfmInd_s *psBuffer);PUBLIC void vAppQApiReturnHwIndBuffer(AppQApiHwInd_s *psBuffer);PUBLIC void vAppQApiPostHwInt(uint32 u32Device, uint32 u32ItemBitmap);/****************************************************************************//*** Exported Variables ***//****************************************************************************/#if defined __cplusplus}#endif#endif /* APP_Q_API_H_INCLUDED *//****************************************************************************//*** END OF FILE ***//****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -