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 --- .../ZDO/include/private/zdoLeaveNetwork.h | 111 --------------------- 1 file changed, 111 deletions(-) delete mode 100644 digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoLeaveNetwork.h (limited to 'digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoLeaveNetwork.h') diff --git a/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoLeaveNetwork.h b/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoLeaveNetwork.h deleted file mode 100644 index 1b16792c..00000000 --- a/digital/beacon/src/Bitcloud_stack/Components/ZDO/include/private/zdoLeaveNetwork.h +++ /dev/null @@ -1,111 +0,0 @@ -/**************************************************************************//** - \file zdoLeaveNetwork.h - - \brief Interface for ZDO Leave Network routines - - \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: - 29.10.09 A. Taradov - Created -******************************************************************************/ -#ifndef _ZDOLEAVENETWORK_H -#define _ZDOLEAVENETWORK_H - -/****************************************************************************** - Includes section -******************************************************************************/ -#include - -/****************************************************************************** - Definitions section -******************************************************************************/ - -/****************************************************************************** - Types section -******************************************************************************/ -typedef enum _ZdoLeaveNetworkState_t -{ - ZDO_LEAVE_NETWORK_IDLE_STATE, - ZDO_LEAVE_NETWORK_NWK_LEAVE_STATE, - ZDO_LEAVE_NETWORK_APS_STOP_STATE -} ZdoLeaveNetworkState_t; - -typedef void (ZdoLeaveNetworkConf_t)(ZDO_Status_t status); - -typedef struct _ZdoLeaveNetwork_t -{ - ZdoLeaveNetworkState_t state; - ZdoLeaveNetworkConf_t *confirm; - bool rejoin; -} ZdoLeaveNetwork_t; - -/****************************************************************************** - Prototypes section -******************************************************************************/ - -/****************************************************************************** - Network leave indication - Parameters: - rejoin - true if rejoin is required - Return: - none -******************************************************************************/ -void zdoLeaveNetworkInd(bool rejoin); - -/****************************************************************************** - Leave device from network - Parameters: - removeChildren - remove or not children - rejoin - perform or not rejoin after leaving - Returns: - None -******************************************************************************/ -void zdoLeaveNetworkReq(bool removeChildren, bool rejoin); - -/****************************************************************************** - Leave device from network. Leave Network module must be allocated before - calling this function. - Parameters: - removeChildren - remove or not children - rejoin - perform or not rejoin after leaving - Returns: - None -******************************************************************************/ -void zdoLeaveNetwork(bool removeChildren, bool rejoin); - -/****************************************************************************** - Allocate Leave Network module - Parameters: - leaveNetworkConf - confirmation callback - Return: - true - if module was alocated, false otherwise -******************************************************************************/ -bool zdoLeaveNetworkAlloc(ZdoLeaveNetworkConf_t *leaveNetworkConf); - -/****************************************************************************** - Free Leave Network module - Parameters: - none - Return: - none -******************************************************************************/ -void zdoLeaveNetworkFree(void); - -/****************************************************************************** - Reset Leave Network component. - Parameters: - none - Return: - none -******************************************************************************/ -void zdoLeaveNetworkReset(void); - -#endif // _ZDOLEAVENETWORK_H - -// eof zdoLeaveNetwork.h -- cgit v1.2.3