summaryrefslogtreecommitdiff
path: root/digital/zigbit/bitcloud/stack/Components/APS/include/private/apsUpdateDevice.h
blob: 39765708f8b3a73afc2c869be8ebd4dae4537197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**************************************************************************//**
  \file apsUpdateDevice.h

  \brief Private interface of APS Update Device.

  \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:
    2010-12-18 Max Gekk - Created.
   Last change:
    $Id: apsUpdateDevice.h 17470 2011-06-10 11:31:00Z mgekk $
 ******************************************************************************/
#if !defined _APS_UPDATE_DEVICE_H
#define _APS_UPDATE_DEVICE_H

/******************************************************************************
                                Includes section
 ******************************************************************************/
#include <apsCommand.h>
#include <nwk.h>
#include <apsFrames.h>

#if defined _SECURITY_
/******************************************************************************
                                 Types section
 ******************************************************************************/
BEGIN_PACK
/** Type of APS update device command frame. */
typedef struct PACK _ApsUpdateDeviceFrame_t
{
  /** An APS header, which comprises frame control and addressing information. */
  ApduCommandHeader_t header;
  /** The 64-bit extended address of the device whose status is being updated.*/
  ExtAddr_t deviceAddress;
  /** The 16-bit network address of the device whose status is being updated. */
  ShortAddr_t deviceShortAddress;
  /** The status field shall be assigned a value as described for the Status
   * parameter in ZigBee spec r19, Table 4.20. */
  uint8_t status;
} ApsUpdateDeviceFrame_t;
END_PACK

/******************************************************************************
                               Prototypes section
 ******************************************************************************/
/**************************************************************************//**
  \brief Update device indication handler.

  \param[in] commandInd - pointer to received command descriptor.

  \return 'true' if NWK buffer with the command frame must be freed
          otherwise return 'false'.
 ******************************************************************************/
APS_PRIVATE bool apsUpdateDeviceInd(const ApsCommandInd_t *const commandInd);

#endif /* _SECURITY_ */
#endif /* _APS_UPDATE_DEVICE_H */
/** eof apsUpdateDevice.h */