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/NWK/include/private/nwkRouteReply.h | 125 --------------------- 1 file changed, 125 deletions(-) delete mode 100644 digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkRouteReply.h (limited to 'digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkRouteReply.h') diff --git a/digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkRouteReply.h b/digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkRouteReply.h deleted file mode 100644 index f0b8c0f2..00000000 --- a/digital/beacon/src/Bitcloud_stack/Components/NWK/include/private/nwkRouteReply.h +++ /dev/null @@ -1,125 +0,0 @@ -/**************************************************************************//** - \file nwkRouteReply.h - - \brief Route reply command types and functions. - - \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: - 2007-09-17 V. Panov - Created. - 2009-11-07 M. Gekk - Refactoring. - Last change: - $Id: nwkRouteReply.h 17448 2011-06-09 13:53:59Z ataradov $ - ******************************************************************************/ -#if !defined _NWK_ROUTE_REPLY_H -#define _NWK_ROUTE_REPLY_H - -/****************************************************************************** - Includes section - ******************************************************************************/ -#include -#include -#include -#include -#include -#include -#include - -/****************************************************************************** - Define(s) section - ******************************************************************************/ -#define NWK_ROUTE_REPLY_TX_PARAMETERS \ - {NWK_TX_DELAY_UNICAST_COMMAND, NULL, NULL, true} -/* Maximum amount of extended addresses in the route reply payload. */ -#define NWK_MAX_RREPLY_EXT_ADDR_AMOUNT 2U - -/****************************************************************************** - Types section - ******************************************************************************/ -/** The options field of route reply command. ZigBee spec. r17, Figure 3.14. */ -BEGIN_PACK -typedef struct PACK _NwkRouteReplyOptions_t -{ - LITTLE_ENDIAN_OCTET(5, ( - NwkBitField_t reserved1 : 4, - /** If this field has value of 1 then the IEEE address of originator is - * included in the payload of the route reply command. */ - NwkBitField_t extAddrOfOriginator : 1, - /** If this field has value of 1 then the IEEE address of responder is - * included in the payload of the route reply command. */ - NwkBitField_t extAddrOfResponder : 1, - /** This field shall have a value of 1 if and only if the command frame is - * a reply to a request for a route to a multicast group. */ - NwkBitField_t multicast : 1, - NwkBitField_t reserved2 : 1 - )) -} NwkRouteReplyOptions_t; - -/** The NWK payload of the route reply command. */ -typedef struct PACK _NwkRouteReplyPayload_t -{ - /** The identifier of the route reply command. */ - NwkCommandIdField_t commandId; - /** The format of the 8-bit command options field is shown in - * ZigBee spec r17, Figure 3.14, page 319. */ - NwkRouteReplyOptions_t options; - /** The route request identifier is the number of the route request to which - * this frame is a reply. ZigBee spec r17, 3.4.2.3.2. */ - uint8_t routeRequestId; - /** The network address of the originator of the route request command frame - * to which this frame is a reply. ZigBee spec r17, 3.4.2.3.3, page 320. */ - ShortAddr_t shortAddrOfOriginator; - /** The responder address field shall always be the same as the value - * in the destination address field of the corresponding route request - * command frame.*/ - ShortAddr_t shortAddrOfResponder; - /** The path cost field is used to sum link cost as the route reply - * command frame transits the network. */ - NwkPathCost_t pathCost; - /** The first element contain the 64-bit address of the originator of - * the route request command frame to which this frame is a reply. - * The second element contain the 64-bit address of the destination of - * the route request command frame to which this frame is a reply.*/ - ExtAddr_t extAddr[NWK_MAX_RREPLY_EXT_ADDR_AMOUNT]; -} NwkRouteReplyPayload_t; -END_PACK - -/****************************************************************************** - Prototypes section - ******************************************************************************/ -#if defined NWK_ROUTING_CAPACITY && defined _NWK_MESH_ROUTING_ -/****************************************************************************** - \brief Action when command received. - - \param[in] payload - pointer to payload of route reply command. - \param[in] header - pointer to raw network header of route reply command. - \param[in] parse - parsed header fields. - \return 'true' if continue processing of command packet otherwise 'false'. -******************************************************************************/ -NWK_PRIVATE bool nwkRouteReplyFrameInd(const uint8_t *const payload, - const NwkFrameHeader_t *const header, const NwkParseHeader_t *const parse); - -/**************************************************************************//** - \brief Prepare header and payload of the route reply command. - - \param[in] outPkt - pointer to output packet. - \param[in] entry - pointer to a route discovery entry. - \return None. - ******************************************************************************/ -NWK_PRIVATE void nwkPrepareRouteReplyTx(NwkOutputPacket_t *const outPkt, - NwkRouteDiscoveryEntry_t *const entry); - -#else /* NWK_ROUTING_CAPACITY */ - -#define nwkRouteReplyFrameInd NULL - -#endif /* NWK_ROUTING_CAPACITY */ -#endif /* _NWK_ROUTE_REPLY_H */ -/** eof nwkRouteReply.h */ - -- cgit v1.2.3