summaryrefslogtreecommitdiff
path: root/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNodeManager.h
diff options
context:
space:
mode:
authorFlorent Duchon2012-12-26 17:38:10 +0100
committerFlorent Duchon2013-02-13 21:24:56 +0100
commit22abd06132445a55a1a0266897920f26634825c1 (patch)
treeeb56bd5654cd3a443b51ee3ea61cc9bbef6f185e /digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNodeManager.h
parentd3807d11ae66d862d5a41cae082288de4b23465c (diff)
digital/beacon: remove obsolete bitcloud stack
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNodeManager.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNodeManager.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNodeManager.h b/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNodeManager.h
deleted file mode 100644
index 49cddb1a..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoNodeManager.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/************************************************************************//**
- \file zdoNodeManager.h
-
- \brief The header file describes the constants, types and internal interface
- of ZDO node 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:
-******************************************************************************/
-
-#ifndef ZDONODEMANAGER_H_
-#define ZDONODEMANAGER_H_
-
-#include <zdoZdpManager.h>
-#include <zdoZdpFrameProcessor.h>
-#include <zdo.h>
-#include <aps.h>
-#include <appTimer.h>
-
-
-// ScanDuration field of Mgmt_NWK_Update_req
-#define MGMT_NWK_UPDATE_DUR_0 ((uint8_t)0x00)
-#define MGMT_NWK_UPDATE_DUR_1 ((uint8_t)0x01)
-#define MGMT_NWK_UPDATE_DUR_2 ((uint8_t)0x02)
-#define MGMT_NWK_UPDATE_DUR_3 ((uint8_t)0x03)
-#define MGMT_NWK_UPDATE_DUR_4 ((uint8_t)0x04)
-#define MGMT_NWK_UPDATE_DUR_5 ((uint8_t)0x05)
-#define MGMT_NWK_UPDATE_DUR_CHANNEL_CHANGE ((uint8_t)0xFE)
-#define MGMT_NWK_UPDATE_DUR_PARAMS_CHANGE ((uint8_t)0xFF)
-
-
-typedef struct zdoNodeManager_t_
-{
- NWK_EDScanReq_t nwkEDScanReq;
- MAC_SetReq_t macSetReq;
- HAL_AppTimer_t channelChangeTimer;
- uint8_t edScanCount;
- uint8_t newChannel;
- uint8_t nwkUpdateId;
- NWK_EDScanConf_t *nwkEDScanConf;
- ZDO_ZdpReq_t zdpNwkUpdateNotify;
- ZDO_ZdpReq_t *storedZdpRequest;
-} ZdoNodeManager_t;
-
-void zdoZdpNodeManagerReset(void);
-void zdoExecuteEDScan(uint32_t scanChannels, uint8_t scanDuration);
-void zdoZdpNodeRequestCreate(void);
-void zdoZdpNodeMessageInd(void);
-void zdpNodeWaitTimerFired(void);
-
-/******************************************************************************
- Set timer on interval BROADCAST_DELIVERY_TIME upon fires which node will
- change the channel
- Parameters:
- scanChannels - channels to move to
- Returns:
- None.
-******************************************************************************/
-void zdoSetChannelChangeTimer(const uint32_t scanChannels);
-
-#endif /*ZDONODEMANAGER_H_*/