123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- /**************************************************************************************************
- Filename: AssocList.h
- Revised: $Date: 2012-02-14 13:39:10 -0800 (Tue, 14 Feb 2012) $
- Revision: $Revision: 29286 $
- Description: Associated Device List.
- Copyright 2004-2012 Texas Instruments Incorporated. All rights reserved.
- IMPORTANT: Your use of this Software is limited to those specific rights
- granted under the terms of a software license agreement between the user
- who downloaded the software, his/her employer (which must be your employer)
- and Texas Instruments Incorporated (the "License"). You may not use this
- Software unless you agree to abide by the terms of the License. The License
- limits your use, and you acknowledge, that the Software may not be modified,
- copied or distributed unless embedded on a Texas Instruments microcontroller
- or used solely and exclusively in conjunction with a Texas Instruments radio
- frequency transceiver, which is integrated into your product. Other than for
- the foregoing purpose, you may not use, reproduce, copy, prepare derivative
- works of, modify, distribute, perform, display or sell this Software and/or
- its documentation for any purpose.
- YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
- PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
- INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
- NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
- TEXAS INSTRUMENTS OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT,
- NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
- LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
- INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
- OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
- OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
- (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
- Should you have any questions regarding your right to use this Software,
- contact Texas Instruments Incorporated at www.TI.com.
- **************************************************************************************************/
- #ifndef ASSOCLIST_H
- #define ASSOCLIST_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*********************************************************************
- * INCLUDES
- */
- #include "ZComDef.h"
- /*********************************************************************
- * MACROS
- */
- /*********************************************************************
- * CONSTANTS
- */
- #define NVINDEX_NOT_FOUND 0xFFFF
- #define NVINDEX_THIS_DEVICE 0xFFFE
- #define ASSOC_INDEX_NOT_FOUND 0xFFFF
- // Bitmap of associated devices status fields
- #define DEV_LINK_STATUS 0x01 // link is in-active ?
- #define DEV_LINK_REPAIR 0x02 // link repair in progress ?
- #define DEV_SEC_INIT_STATUS 0x04 // security init
- #define DEV_SEC_AUTH_STATUS 0x08 // security authenticated
- #define DEV_SECURED_JOIN 0x20 // Device joined secure
- #define DEV_REJOIN_STATUS 0x40 // Device rejoined
- #define DEV_HIGH_SEC_STATUS 0x80 // Device joined as High Security
- // Node Relations
- #define PARENT 0
- #define CHILD_RFD 1
- #define CHILD_RFD_RX_IDLE 2
- #define CHILD_FFD 3
- #define CHILD_FFD_RX_IDLE 4
- #define NEIGHBOR 5
- #define OTHER 6
- #define NOTUSED 0xFF
- /*********************************************************************
- * TYPEDEFS
- */
- typedef struct
- {
- UINT16 shortAddr; // Short address of associated device
- uint16 addrIdx; // Index from the address manager
- byte nodeRelation;
- byte devStatus; // bitmap of various status values
- byte assocCnt;
- byte age;
- linkInfo_t linkInfo;
- } associated_devices_t;
- typedef struct
- {
- uint16 numRecs;
- } nvDeviceListHdr_t;
- /*********************************************************************
- * GLOBAL VARIABLES
- */
- //extern byte _numAssocDev;
- extern associated_devices_t AssociatedDevList[];
- /*********************************************************************
- * FUNCTIONS
- */
- /*
- * Variable initialization
- */
- extern void AssocInit( void );
- /*
- * Create a new or update a previous association.
- */
- extern associated_devices_t *AssocAddNew( uint16 shortAddr, byte *extAddr,
- byte nodeRelation );
- /*
- * Count number of devices.
- */
- extern uint16 AssocCount( byte startRelation, byte endRelation );
- /*
- * Check if the device is a child.
- */
- extern byte AssocIsChild( uint16 shortAddr );
- /*
- * Check if the device is a reduced funtion child
- */
- byte AssocIsRFChild( uint16 shortAddr );
- /*
- * Check if the device is my parent.
- */
- extern byte AssocIsParent( uint16 shortAddr );
- /*
- * Search the Device list using shortAddr.
- */
- extern associated_devices_t *AssocGetWithShort( uint16 shortAddr );
- /*
- * Search the Device list using extended Address.
- */
- extern associated_devices_t *AssocGetWithExt( byte *extAddr );
- /*
- * Remove a device from the list. Uses the extended address.
- */
- extern byte AssocRemove( byte *extAddr );
- /*
- * Returns the next inactive child node
- */
- extern uint16 AssocGetNextInactiveNode( uint16 shortAddr );
- /*
- * Returns the next child node
- */
- extern uint16 AssocGetNextChildNode( uint16 shortAddr );
- /*
- * Remove all devices from the list and reset it
- */
- extern void AssocReset( void );
- /*
- * AssocMakeList - Make a list of associate devices
- * NOTE: this function returns a dynamically allocated buffer
- * that MUST be deallocated (osal_mem_free).
- */
- extern uint16 *AssocMakeList( byte *pCount );
- /*
- * Gets next device that matches the status parameter
- */
- extern associated_devices_t *AssocMatchDeviceStatus( uint8 status );
- /*
- * Initialize the Assoc Device List NV Item
- */
- extern byte AssocInitNV( void );
- /*
- * Set Assoc Device list NV Item to defaults
- */
- extern void AssocSetDefaultNV( void );
- /*
- * Restore the device list (assoc list) from NV
- */
- extern uint8 AssocRestoreFromNV( void );
- /*
- * Save the device list (assoc list) to NV
- */
- extern void AssocWriteNV( void );
- /*
- * Find Nth active device in list
- */
- extern associated_devices_t *AssocFindDevice( byte number );
- extern uint8 AssocChangeNwkAddr( uint16 nwkAddr, uint8 *ieeeAddr );
- extern void AssocCheckDupNeighbors( void );
- /*********************************************************************
- *********************************************************************/
- #ifdef __cplusplus
- }
- #endif
- #endif /* ASSOCLIST_H */
|