From 22abd06132445a55a1a0266897920f26634825c1 Mon Sep 17 00:00:00 2001 From: Florent Duchon Date: Wed, 26 Dec 2012 17:38:10 +0100 Subject: digital/beacon: remove obsolete bitcloud stack --- .../Components/ZDO/include/private/zdoNwkManager.h | 87 ---------------------- 1 file changed, 87 deletions(-) delete mode 100644 digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNwkManager.h (limited to 'digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNwkManager.h') diff --git a/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNwkManager.h b/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNwkManager.h deleted file mode 100644 index 6c9d4ef8..00000000 --- a/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNwkManager.h +++ /dev/null @@ -1,87 +0,0 @@ -/************************************************************************//** - \file zdoNwkManager.h - - \brief The header file describes the constants, types and internal interface - of ZDO network manager - - \author - Atmel Corporation: http://www.atmel.com \n - Support email: avr@atmel.com - - Copyright (c) 2008-2011, Atmel Corporation. All rights reserved. - Licensed under Atmel's Limited License Agreement (BitCloudTM). - - \internal - History: - 07/06/07 I. Kalganova - Modified -******************************************************************************/ - -#ifndef _ZDONWKMANAGER_H -#define _ZDONWKMANAGER_H - -/****************************************************************************** - Includes section -******************************************************************************/ -#include -#include -#include -#include -#include - -/****************************************************************************** - Types section -******************************************************************************/ -/********************************************************************************//** -\brief States of ZDO NWKUpdateState functionality -***********************************************************************************/ -typedef enum -{ - ZDO_IDLE_NWK_UPDATE_STATE, - ZDO_INTERNAL_NWK_UPDATE_STATE, - ZDO_EXTERNAL_NWK_UPDATE_STATE, - ZDO_EXTERNAL_ERROR_NWK_UPDATE_STATE -} ZdoNWKUpdateState_t; - -typedef struct _ZdoNwkManager_t -{ - uint8_t statusIndCounter: 4; - bool resendAnnce: 1; - bool zdpDataReqBusy: 1; - bool updateDeviceReqBusy: 1; - bool updateDeviceReqPending: 1; - ZDO_ZdpReq_t zdpDataReq; - void (*deviceAnnceConf)(ZDO_ZdpResp_t *zdpResp); - void (*resendAnnceConf)(ZDO_ZdpResp_t *zdpResp); - MAC_SetReq_t macSetReq; - ZDO_SetTxPowerReq_t *txPowerReq; -#ifdef _SECURITY_ - APS_UpdateDeviceReq_t apsUpdateDeviceReq; -#endif //_SECURITY_ - uint16_t totalTransactions; - uint16_t failTransactions; - bool badLink; - HAL_AppTimer_t updateNwkWaitTimer; - ZdoNWKUpdateState_t updateState; - uint8_t transSeqNum; -} ZdoNwkManager_t; - -/****************************************************************************** - Prototypes section -******************************************************************************/ -void zdoNwkManagerReset(void); -void zdoSendDeviceAnnce(void (*deviceAnnceConf)(ZDO_ZdpResp_t *zdpResp)); - -/****************************************************************************** - Check if short address is available for given extended address and send - appropriate request if not. - Parameters: - addr - extended address to check - Return: - true - short address already available - false - short address currently is not available, request was sent -******************************************************************************/ -bool zdoDiscoverNwkAddress(const ExtAddr_t *const addr); - -#endif // _ZDONWKMANAGER_H - -// eof zdoNwkManager.h -- cgit v1.2.3