Modules#
EmberGpTranslationTableAdditionalInfoBlockOptionRecordField
Zigbee Green Power types and defines. See greenpower for documentation.
License#
Copyright 2018 Silicon Laboratories Inc. www.silabs.com
The licensor of this software is Silicon Laboratories Inc. Your use of this software is governed by the terms of Silicon Labs Master Software License Agreement (MSLA) available at www.silabs.com/about-us/legal/master-software-license-agreement. This software is distributed to you in Source Code format and is governed by the sections of the MSLA applicable to Source Code.
/***************************************************************************/
#ifndef SILABS_GP_TYPES_H
#define SILABS_GP_TYPES_H
// Mask used in the Gp Ep Incoming Message Handler to pass bidirectional information
// Incoming GPDF has rxAfterTx bit set
#define EMBER_GP_BIDIRECTION_INFO_RX_AFTER_TX_MASK 0x01
// A tx queue is available at gp stub to hold an outgoing GPDF
#define EMBER_GP_BIDIRECTION_INFO_TX_QUEUE_AVAILABLE_MASK 0x02
typedef uint32_t EmberGpSourceId;
typedef uint32_t EmberGpSecurityFrameCounter;
typedef uint32_t EmberGpMic;
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberGpSecurityLevel
#else
typedef uint8_t EmberGpSecurityLevel;
enum
#endif
{
EMBER_GP_SECURITY_LEVEL_NONE = 0x00,
EMBER_GP_SECURITY_LEVEL_RESERVED = 0x01,
EMBER_GP_SECURITY_LEVEL_FC_MIC = 0x02,
EMBER_GP_SECURITY_LEVEL_FC_MIC_ENCRYPTED = 0x03,
};
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberGpKeyType
#else
typedef uint8_t EmberGpKeyType;
enum
#endif
{
EMBER_GP_SECURITY_KEY_NONE = 0x00,
EMBER_GP_SECURITY_KEY_NWK = 0x01,
EMBER_GP_SECURITY_KEY_GPD_GROUP = 0x02,
EMBER_GP_SECURITY_KEY_NWK_DERIVED = 0x03,
EMBER_GP_SECURITY_KEY_GPD_OOB = 0x04,
EMBER_GP_SECURITY_KEY_GPD_DERIVED = 0x07,
};
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberGpApplicationId
#else
typedef uint8_t EmberGpApplicationId;
enum
#endif
{
EMBER_GP_APPLICATION_SOURCE_ID = 0x00,
EMBER_GP_APPLICATION_IEEE_ADDRESS = 0x02,
};
#define EMBER_GP_APPLICATION_ID_MASK 0x03
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberGpProxyTableEntryStatus
#else
typedef uint8_t EmberGpProxyTableEntryStatus;
enum
#endif
{
EMBER_GP_PROXY_TABLE_ENTRY_STATUS_ACTIVE = 0x01,
EMBER_GP_PROXY_TABLE_ENTRY_STATUS_UNUSED = 0xFF,
};
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberGpSinkTableEntryStatus
#else
typedef uint8_t EmberGpSinkTableEntryStatus;
enum
#endif
{
EMBER_GP_SINK_TABLE_ENTRY_STATUS_ACTIVE = 0x01,
EMBER_GP_SINK_TABLE_ENTRY_STATUS_UNUSED = 0xFF,
};
typedef struct {
union {
EmberEUI64 gpdIeeeAddress;
EmberGpSourceId sourceId;
} id;
EmberGpApplicationId applicationId;
uint8_t endpoint;
} EmberGpAddress;
typedef enum {
EMBER_GP_SINK_TYPE_FULL_UNICAST,
EMBER_GP_SINK_TYPE_D_GROUPCAST,
EMBER_GP_SINK_TYPE_GROUPCAST,
EMBER_GP_SINK_TYPE_LW_UNICAST,
EMBER_GP_SINK_TYPE_UNUSED = 0xFF
} EmberGpSinkType;
typedef struct {
EmberEUI64 sinkEUI;
EmberNodeId sinkNodeId;
} EmberGpSinkAddress;
typedef struct {
uint16_t groupID;
uint16_t alias;
} EmberGpSinkGroup;
typedef struct {
EmberGpSinkType type;
union {
EmberGpSinkAddress unicast;
EmberGpSinkGroup groupcast;
EmberGpSinkGroup groupList; // Entry for Sink Group List
} target;
} EmberGpSinkListEntry;
#define GP_SINK_LIST_ENTRIES 2
// The size of the SinkList entries in sink table in format of octet string that has a format of {<1 byte length>, <n bytes for sink groups>}
#define GP_SIZE_OF_SINK_LIST_ENTRIES_OCTET_STRING (1 + (GP_SINK_LIST_ENTRIES * (sizeof(EmberGpSinkGroup))))
typedef struct {
EmberGpProxyTableEntryStatus status;
uint32_t options;
EmberGpAddress gpd;
EmberNodeId assignedAlias;
uint8_t securityOptions;
EmberGpSecurityFrameCounter gpdSecurityFrameCounter;
EmberKeyData gpdKey;
EmberGpSinkListEntry sinkList[GP_SINK_LIST_ENTRIES];
uint8_t groupcastRadius;
uint8_t searchCounter;
} EmberGpProxyTableEntry;
typedef struct {
EmberGpSinkTableEntryStatus status;
uint16_t options;
EmberGpAddress gpd;
uint8_t deviceId;
EmberGpSinkListEntry sinkList[GP_SINK_LIST_ENTRIES];
EmberNodeId assignedAlias;
uint8_t groupcastRadius;
uint8_t securityOptions;
EmberGpSecurityFrameCounter gpdSecurityFrameCounter;
EmberKeyData gpdKey;
} EmberGpSinkTableEntry;
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberCGpTxOption
#else
typedef uint8_t EmberCGpTxOption;
enum
#endif
{
EMBER_CGP_TX_OPTION_NONE = 0x00,
EMBER_CGP_TX_OPTION_USE_CSMA_CA = 0x01,
EMBER_CGP_TX_OPTION_USE_MAC_ACK = 0x02,
EMBER_CGP_TX_OPTION_RESERVED = 0xFC,
};
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberCGpAddressMode
#else
typedef uint8_t EmberCGpAddressMode;
enum
#endif
{
EMBER_CGP_ADDRESS_MODE_NONE = 0x00,
EMBER_CGP_ADDRESS_MODE_RESERVED = 0x01,
EMBER_CGP_ADDRESS_MODE_SHORT = 0x02,
EMBER_CGP_ADDRESS_MODE_EXTENDED = 0x03,
};
typedef struct {
union {
EmberNodeId shortId;
EmberEUI64 extendedId;
} address;
EmberPanId panId;
EmberCGpAddressMode mode;
} EmberCGpAddress;
#ifdef DOXYGEN_SHOULD_SKIP_THIS
enum EmberDGpTxOption
#else
typedef uint8_t EmberDGpTxOption;
enum
#endif
{
EMBER_DGP_TX_OPTION_NONE = 0x00,
EMBER_DGP_TX_OPTION_USE_GP_TX_QUEUE = 0x01,
EMBER_DGP_TX_OPTION_USE_CSMA_CA = 0x02,
EMBER_DGP_TX_OPTION_USE_MAC_ACK = 0x04,
EMBER_DGP_TX_OPTION_FRAME_TYPE_DATA = 0x00,
EMBER_DGP_TX_OPTION_FRAME_TYPE_MAINTENANCE = 0x08,
EMBER_DGP_TX_OPTION_RESERVED = 0xE0,
};
typedef struct {
uint8_t foo;
} EmberGpProxyClusterAttributes;
typedef struct {
bool inUse;
bool useCca;
EmberGpAddress addr;
uint8_t gpdCommandId;
EmberMessageBuffer asdu;
uint8_t gpepHandle;
uint16_t queueEntryLifetimeMs;
} EmberGpTxQueueEntry;
#define GP_PARAMS \
EmberStatus status, \
uint8_t gpdLink, \
uint8_t sequenceNumber, \
EmberGpAddress * addr, \
EmberGpSecurityLevel gpdfSecurityLevel, \
EmberGpKeyType gpdfSecurityKeyType, \
bool autoCommissioning, \
uint8_t bidirectionalInfo, \
uint32_t gpdSecurityFrameCounter, \
uint8_t gpdCommandId, \
uint32_t mic, \
uint8_t proxyTableIndex, \
uint8_t gpdCommandPayloadLength, \
uint8_t * gpdCommandPayload
#define GP_ARGS \
status, \
gpdLink, \
sequenceNumber, \
addr, \
gpdfSecurityLevel, \
gpdfSecurityKeyType, \
autoCommissioning, \
bidirectionalInfo, \
gpdSecurityFrameCounter, \
gpdCommandId, \
mic, \
proxyTableIndex, \
gpdCommandPayloadLength, \
gpdCommandPayload
#define GP_UNUSED_ARGS \
(void)status; \
(void)gpdLink; \
(void)sequenceNumber; \
(void)addr; \
(void)gpdfSecurityLevel; \
(void)gpdfSecurityKeyType; \
(void)autoCommissioning; \
(void)rxAfterTx; \
(void)gpdSecurityFrameCounter; \
(void)gpdCommandId; \
(void)mic; \
(void)proxyTableIndex; \
(void)gpdCommandPayloadLength; \
(void)gpdCommandPayload;
#define GP_PROXY_TABLE_OPTIONS_IN_RANGE (BIT(10))
//3 consumed by device id, options, and app info byte
#define GP_COMMISSIONING_MAX_BYTES (55 - 3)
typedef struct {
uint8_t deviceId;
uint8_t applInfoBitmap;
uint16_t manufacturerId;
uint16_t modelId;
uint8_t numberOfGpdCommands;
uint8_t gpdCommands[GP_COMMISSIONING_MAX_BYTES - 1];
uint8_t numberOfPairedEndpoints;
uint8_t pairedEndpoints[GP_COMMISSIONING_MAX_BYTES - 1];
uint8_t numberOfGpdClientCluster;
uint8_t numberOfGpdServerCluster;
uint16_t serverClusters[15];
uint16_t clientClusters[15];
} EmberGpApplicationInfo;
typedef struct {
uint16_t attributeID;
uint8_t attributeDataType;
uint8_t remainingAttributRecordLength; // on 4 bits
uint8_t reported;
uint8_t attrValuePresent;
uint8_t attrOffsetWithinReport;
// TODO change "attrValue" from u32 to a pointer, as the data could be up to a string
// the field "attributeDataType" tell with format it is, among more than 55 possibilities)
// so a add a private field which just tell the length of attrValue to easier
// process it
uint32_t attrValue;
uint8_t attrValueSize;
} EmberGpAttributeRecord;
typedef struct {
// Note: it is "N-1", if there is 2 attr record then nbAttrRecord=1 and not 2 !
uint8_t nbAttrRecord;
uint8_t clientServer;
uint8_t ManIdPresent;
uint8_t datapointOptions;
uint16_t clusterID;
uint16_t manufacturerID;
EmberGpAttributeRecord attrRecord;
} EmberGpDataPointDescriptor;
typedef struct {
uint8_t repId;
uint8_t reportOptions;
uint16_t timeoutPeriod;
uint8_t totalLength;
EmberGpDataPointDescriptor dataPoint;
} EmberGpReportDescriptor;
typedef struct {
uint8_t switchInfoLength;
uint8_t nbOfContacts;
uint8_t switchType;
uint8_t currentContact;
uint8_t savedContact;
}EmberGpSwitchInformation;
#define TT_NB_MAX_OPTION_RECORD (8)
typedef struct {
uint8_t currentStatus;
uint8_t contactBitmask;
} EmberGpGenericSwitchData;
typedef struct {
uint8_t totalLengthOfAddInfoBlock;
uint8_t optionSelector;
union {
struct {
uint8_t reportIdentifier;
uint8_t attrOffsetWithinReport;
uint16_t clusterID;
uint16_t attributeID;
uint8_t attributeDataType;
uint8_t attributeOptions; //clientServer bit0 manufacturerIdPresent bit1
uint16_t manufacturerID;
} compactAttr;
struct {
uint8_t contactStatus;
uint8_t contactBitmask;
} genericSwitch;
} optionData;//EmberGpTranslationTableAdditionalInfoBlockOptionRecordOptionDataField;
} EmberGpTranslationTableAdditionalInfoBlockOptionRecordField;
#define GP_GPD_SRC_ID_FOR_CAHNNEL_CONFIG 0x00000000
#define GP_GPD_SRC_ID_WILDCARD 0xFFFFFFFF
// GPD SrcID reserved values
#define GP_GPD_SRC_ID_RESERVED_0 0x00000000
#define GP_GPD_SRC_ID_RESERVED_FFFFFF9 0xFFFFFFF9
#define GP_GPD_SRC_ID_RESERVED_FFFFFFA 0xFFFFFFFA
#define GP_GPD_SRC_ID_RESERVED_FFFFFFB 0xFFFFFFFB
#define GP_GPD_SRC_ID_RESERVED_FFFFFFC 0xFFFFFFFC
#define GP_GPD_SRC_ID_RESERVED_FFFFFFD 0xFFFFFFFD
#define GP_GPD_SRC_ID_RESERVED_FFFFFFE 0xFFFFFFFE
#define GP_DERIVED_GROUP_ALIAS_NOT_USED 0xffff
#define GP_DMIN_B 32
#define GP_DMIN_U 5
#define GP_DMAX 100
// -----------------------------------------------------------------------------
// API
EmberStatus emberDGpSend(bool action,
bool useCca,
EmberGpAddress *addr,
uint8_t gpdCommandId,
uint8_t gpdAsduLength,
uint8_t const *gpdAsdu,
uint8_t gpepHandle,
uint16_t gpTxQueueEntryLifetimeMs);
bool emberGpProxyTableProcessGpPairing(uint32_t options,
EmberGpAddress* addr,
uint8_t commMode,
uint16_t sinkNwkAddress,
uint16_t sinkGroupId,
uint16_t assignedAlias,
uint8_t* sinkIeeeAddress,
EmberKeyData *gpdKey,
uint32_t gpdSecurityFrameCounter,
uint8_t forwardingRadius);
uint8_t emberGpProxyTableLookup(EmberGpAddress *addr);
EmberStatus emberGpProxyTableGetEntry(uint8_t proxyIndex,
EmberGpProxyTableEntry *entry);
EmberStatus emberGpSinkTableGetEntry(uint8_t sinkIndex,
EmberGpSinkTableEntry *entry);
uint8_t emberGpSinkTableLookup(EmberGpAddress *addr);
void emberGpSinkTableClearAll(void);
EmberStatus emberGpSinkTableSetEntry(uint8_t sinkTableIndex,
EmberGpSinkTableEntry *entry);
uint8_t emberGpSinkTableFindOrAllocateEntry(EmberGpAddress *addr);
void emberGpSinkTableRemoveEntry(uint8_t index);
void emberGpSinkTableInit(void);
void emberGpSinkTableSetSecurityFrameCounter(uint8_t index,
uint32_t sfc);
// Tx Queue APIs
MessageBufferQueue * emberGpGetTxQueueHead(void);
void emberGpSetMaxTxQueueEntry(uint16_t maxEntries);
uint16_t emberGetGpMaxTxQListCount(void);
uint16_t emberGetGpTxQListCount(void);
EmberMessageBuffer emberGpGetTxQueueEntryFromQueue(EmberGpTxQueueEntry *txQueue,
uint8_t *data,
uint16_t *dataLength,
uint16_t allocatedDataLength);
EmberMessageBuffer emberGpAddGpTxQueueEntryWithPayload(EmberGpTxQueueEntry *txQueue,
uint8_t *data,
uint16_t dataLength);
bool emberGpRemoveFromTxQueue(EmberGpTxQueueEntry *txQueue);
void emberGpClearTxQueue(void);
#endif // SILABS_GP_TYPES_H
// end of name API
GP Types#
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of maximum option record entries in translation table.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Number of GP sink list entries. Minimum is 2 sink list entries.
Green Power Security Level.
Green Power Security Security Key Type.
Green Power Application Id.
GP proxy table entry status.
GP sink table entry status.
GP Sink Type.
CGp Transmit options.
Addressing modes for CGp messages.
Transmit options for DGp messages.
API#
DGp Send.
Process Gp Pairing.
Proxy table look up.
Get Proxy table entry.
Get Sink table entry.
Sink table look up.
Clear sink table.
Get Sink table entry.
Allocates an entry in sink able.
Remove an entry in sink table.
Initialize sink table.
Sets security frame counter in sink table entry.
Gets tx queue head.
Sets maximum limit for number of entries in the tx queue.
Gets the limit set for maximum number of entries in the tx queue.
Gets the number of entries in the tx queue.
Gets an entry from Tx Queue The function searches the tx queue using gpd address pointed by supplied in the input/output argument txQueue and returns the message buffer that currently holding the outgoing gpdf information, returns EMBER_NULL_MESSAGE_BUFFER if not found.
Adds an entry to Tx Queue This function adds an entry along with supplied payload data to the Buffer queue. Returns the buffer handle if success else null message buffer upon failure.
Remove an entry from Tx Queue This function searches and removes the entry provided.
Purges Tx Queue This function purges the tx queue.
Macros#
GP Types Documentation#
EmberGpSecurityLevel#
EmberGpSecurityLevel
Green Power Security Level.
Enumerator | |
---|---|
EMBER_GP_SECURITY_LEVEL_NONE | No Security |
EMBER_GP_SECURITY_LEVEL_RESERVED | Reserved |
EMBER_GP_SECURITY_LEVEL_FC_MIC | 4 Byte Frame Counter and 4 Byte MIC |
EMBER_GP_SECURITY_LEVEL_FC_MIC_ENCRYPTED | 4 Byte Frame Counter and 4 Byte MIC with encryption |
EmberGpKeyType#
EmberGpKeyType
Green Power Security Security Key Type.
Enumerator | |
---|---|
EMBER_GP_SECURITY_KEY_NONE | No Key |
EMBER_GP_SECURITY_KEY_NWK | GP Security Key Type is Zigbee Network Key |
EMBER_GP_SECURITY_KEY_GPD_GROUP | GP Security Key Type is Group Key |
EMBER_GP_SECURITY_KEY_NWK_DERIVED | GP Security Key Type is Derived Network Key |
EMBER_GP_SECURITY_KEY_GPD_OOB | GP Security Key Type is Out Of Box Key |
EMBER_GP_SECURITY_KEY_GPD_DERIVED | GP Security Key Type is GPD Derived Key |
EmberGpApplicationId#
EmberGpApplicationId
Green Power Application Id.
Enumerator | |
---|---|
EMBER_GP_APPLICATION_SOURCE_ID | Source identifier. |
EMBER_GP_APPLICATION_IEEE_ADDRESS | IEEE address. |
EmberGpProxyTableEntryStatus#
EmberGpProxyTableEntryStatus
GP proxy table entry status.
Enumerator | |
---|---|
EMBER_GP_PROXY_TABLE_ENTRY_STATUS_ACTIVE | The GP table entry is in use for a Proxy Table Entry. |
EMBER_GP_PROXY_TABLE_ENTRY_STATUS_UNUSED | The proxy table entry is not in use. |
EmberGpSinkTableEntryStatus#
EmberGpSinkTableEntryStatus
GP sink table entry status.
Enumerator | |
---|---|
EMBER_GP_SINK_TABLE_ENTRY_STATUS_ACTIVE | The GP table entry is in use for a Sink Table Entry. |
EMBER_GP_SINK_TABLE_ENTRY_STATUS_UNUSED | The proxy table entry is not in use. |
EmberGpSinkType#
EmberGpSinkType
GP Sink Type.
Enumerator | |
---|---|
EMBER_GP_SINK_TYPE_FULL_UNICAST | Sink Type is Full Unicast |
EMBER_GP_SINK_TYPE_D_GROUPCAST | Sink Type is Derived groupcast, the group ID is derived from the GpdId during commissioning. The sink is added to the APS group with that groupId. |
EMBER_GP_SINK_TYPE_GROUPCAST | Sink type EMBER_GP_SINK_TYPE_GROUPCAST, the groupId can be obtained from the APS group table or from the sink table. |
EMBER_GP_SINK_TYPE_LW_UNICAST | Sink Type is Light Weight Unicast. |
EMBER_GP_SINK_TYPE_UNUSED | Unused sink type |
EmberCGpTxOption#
EmberCGpTxOption
CGp Transmit options.
Enumerator | |
---|---|
EMBER_CGP_TX_OPTION_NONE | No options. |
EMBER_CGP_TX_OPTION_USE_CSMA_CA | Use CSMA/CA. |
EMBER_CGP_TX_OPTION_USE_MAC_ACK | Use MAC ACK. |
EMBER_CGP_TX_OPTION_RESERVED | Reserved. |
EmberCGpAddressMode#
EmberCGpAddressMode
Addressing modes for CGp messages.
Enumerator | |
---|---|
EMBER_CGP_ADDRESS_MODE_NONE | No address (PAN identifier and address omitted). |
EMBER_CGP_ADDRESS_MODE_RESERVED | Reserved. |
EMBER_CGP_ADDRESS_MODE_SHORT | 16-bit short address. |
EMBER_CGP_ADDRESS_MODE_EXTENDED | 64-bit extended address. |
EmberDGpTxOption#
EmberDGpTxOption
Transmit options for DGp messages.
Enumerator | |
---|---|
EMBER_DGP_TX_OPTION_NONE | No options. |
EMBER_DGP_TX_OPTION_USE_GP_TX_QUEUE | Use gpTxQueue. |
EMBER_DGP_TX_OPTION_USE_CSMA_CA | Use CSMA/CA. |
EMBER_DGP_TX_OPTION_USE_MAC_ACK | Use MAC ACK. |
EMBER_DGP_TX_OPTION_FRAME_TYPE_DATA | Data frame. |
EMBER_DGP_TX_OPTION_FRAME_TYPE_MAINTENANCE | Maintenance frame. |
EMBER_DGP_TX_OPTION_RESERVED | Reserved. |
EmberGpSecurityFrameCounter#
typedef uint32_t EmberGpSecurityFrameCounter
32-bit security frame counter
API Documentation#
emberDGpSend#
EmberStatus emberDGpSend (bool action, bool useCca, EmberGpAddress * addr, uint8_t gpdCommandId, uint8_t gpdAsduLength, uint8_t const * gpdAsdu, uint8_t gpepHandle, uint16_t gpTxQueueEntryLifetimeMs)
DGp Send.
Type | Direction | Argument Name | Description |
---|---|---|---|
bool | N/A | action | Action to add (true) or remove (false) |
bool | N/A | useCca | Use CCA for GPDF transmission. |
EmberGpAddress * | N/A | addr | The gpd address EmberGpAddress. |
uint8_t | N/A | gpdCommandId | GPD Command ID |
uint8_t | N/A | gpdAsduLength | ASDU Length. |
uint8_t const * | N/A | gpdAsdu | The ASDU buffer that holds the outgoing GPDF as payload. |
uint8_t | N/A | gpepHandle | Handle for the asdu. |
uint16_t | N/A | gpTxQueueEntryLifetimeMs | Life time in milliseconds in Tx queue after which it gets cleared. |
This API adds or removes an outgoing GPDF (passed as ASDU) in the GP stub layer. As part of Gp Response command processing by green power client cluster, this API submits a outgoing a channel configuration or a commissioning reply GPDF. Similarly, it is called with appropriate action to clear the Tx queue upon channel request timeout.
Returns
An EmberStatus as status.
emberGpProxyTableProcessGpPairing#
bool emberGpProxyTableProcessGpPairing (uint32_t options, EmberGpAddress * addr, uint8_t commMode, uint16_t sinkNwkAddress, uint16_t sinkGroupId, uint16_t assignedAlias, uint8_t * sinkIeeeAddress, EmberKeyData * gpdKey, uint32_t gpdSecurityFrameCounter, uint8_t forwardingRadius)
Process Gp Pairing.
Type | Direction | Argument Name | Description |
---|---|---|---|
uint32_t | N/A | options | option field of the Gp Pairing command, this holds the validity of other inputs. |
EmberGpAddress * | N/A | addr | The gpd address EmberGpAddress. |
uint8_t | N/A | commMode | Communication mode as supplied in the Gp Pairing command. |
uint16_t | N/A | sinkNwkAddress | Network address of the sink. |
uint16_t | N/A | sinkGroupId | Group Id of the sink. |
uint16_t | N/A | assignedAlias | Assigned alias for the GPD under commissioning. |
uint8_t * | N/A | sinkIeeeAddress | sink EUI64 address |
EmberKeyData * | N/A | gpdKey | GPD key |
uint32_t | N/A | gpdSecurityFrameCounter | security frame counter from GPD. |
uint8_t | N/A | forwardingRadius | forwarding radius |
This function adds or updates the entry in the proxy table as part of Gp Pairing command processing. All the input arguments for this API is derived directly from the incoming GP Pairing command
Returns
true on success and false for failure.
emberGpProxyTableLookup#
uint8_t emberGpProxyTableLookup (EmberGpAddress * addr)
Proxy table look up.
Type | Direction | Argument Name | Description |
---|---|---|---|
EmberGpAddress * | N/A | addr | The gpd address EmberGpAddress to look up. |
This function looks up a gpd address in the Gp Proxy Table and returns index of the entry.
Returns
a valid index to the entry in proxy table and 0xFF in case of not found.
emberGpProxyTableGetEntry#
EmberStatus emberGpProxyTableGetEntry (uint8_t proxyIndex, EmberGpProxyTableEntry * entry)
Get Proxy table entry.
Type | Direction | Argument Name | Description |
---|---|---|---|
uint8_t | N/A | proxyIndex | a valid index to proxy table. |
EmberGpProxyTableEntry * | N/A | entry | proxy table entry |
This function gets an entry from proxy table at the supplied index.
Returns
An EmberStatus as status.
emberGpSinkTableGetEntry#
EmberStatus emberGpSinkTableGetEntry (uint8_t sinkIndex, EmberGpSinkTableEntry * entry)
Get Sink table entry.
Type | Direction | Argument Name | Description |
---|---|---|---|
uint8_t | N/A | sinkIndex | a valid index to sink table. |
EmberGpSinkTableEntry * | N/A | entry | sink table entry |
This function gets an entry from sink table at the supplied index.
Returns
An EmberStatus as status.
emberGpSinkTableLookup#
uint8_t emberGpSinkTableLookup (EmberGpAddress * addr)
Sink table look up.
Type | Direction | Argument Name | Description |
---|---|---|---|
EmberGpAddress * | N/A | addr | The gpd address EmberGpAddress to look up. |
This function looks up a gpd address in the Gp Sink Table and returns index of the entry.
Returns
a valid index to the entry in proxy table and 0xFF in case of not found.
emberGpSinkTableClearAll#
void emberGpSinkTableClearAll (void )
Clear sink table.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This function clears all entries in the sink table.
emberGpSinkTableSetEntry#
EmberStatus emberGpSinkTableSetEntry (uint8_t sinkTableIndex, EmberGpSinkTableEntry * entry)
Get Sink table entry.
Type | Direction | Argument Name | Description |
---|---|---|---|
uint8_t | N/A | sinkTableIndex | a valid index to sink table. |
EmberGpSinkTableEntry * | N/A | entry | sink table entry |
This function gets an entry from sink table at the supplied index.
Returns
An EmberStatus as status.
emberGpSinkTableFindOrAllocateEntry#
uint8_t emberGpSinkTableFindOrAllocateEntry (EmberGpAddress * addr)
Allocates an entry in sink able.
Type | Direction | Argument Name | Description |
---|---|---|---|
EmberGpAddress * | N/A | addr | The gpd address EmberGpAddress to look up. |
This function looks up a gpd address in sink table. Returns the index of the entry if exists. If the entry is not found but there are space available in the table, allocates an entry and returns the index. If no space available returns 0xFF.
Returns
a valid index to the entry in proxy table and 0xFF in case of no space.
emberGpSinkTableRemoveEntry#
void emberGpSinkTableRemoveEntry (uint8_t index)
Remove an entry in sink table.
Type | Direction | Argument Name | Description |
---|---|---|---|
uint8_t | N/A | index |
This function removes an entry at the index provided.
emberGpSinkTableInit#
void emberGpSinkTableInit (void )
Initialize sink table.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This function initializes the sink table in RAM. It copies the non-volatile sink table entries to a RAM table which is used during operation. By design,the non-volatile token entry for the sink table are compressed and does not hold the data that can be derived. This function is only called during initialization of the green power stack to initialize the entire table with derived data.
emberGpSinkTableSetSecurityFrameCounter#
void emberGpSinkTableSetSecurityFrameCounter (uint8_t index, uint32_t sfc)
Sets security frame counter in sink table entry.
Type | Direction | Argument Name | Description |
---|---|---|---|
uint8_t | N/A | index | Valid sink table entry index |
uint32_t | N/A | sfc | byte security frame counter |
This function sets the security frame counter for a sink table entry at an index.
emberGpGetTxQueueHead#
MessageBufferQueue * emberGpGetTxQueueHead (void )
Gets tx queue head.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This function gets the head pointer of the tx queue. Note : since it returns a pointer to memory the head, it 'll not be useful on host.
Returns
pointer to head of tx queue MessageBufferQueue
emberGpSetMaxTxQueueEntry#
void emberGpSetMaxTxQueueEntry (uint16_t maxEntries)
Sets maximum limit for number of entries in the tx queue.
Type | Direction | Argument Name | Description |
---|---|---|---|
uint16_t | N/A | maxEntries |
This function sets the maximum number of entries the tx queue is supposed to grow.
emberGetGpMaxTxQListCount#
uint16_t emberGetGpMaxTxQListCount (void )
Gets the limit set for maximum number of entries in the tx queue.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This function gets the limit set for the maximum number of entries the tx queue is supposed to hold.
Returns
limit to the maximum number of entries.
emberGetGpTxQListCount#
uint16_t emberGetGpTxQListCount (void )
Gets the number of entries in the tx queue.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |
This function gets the number of entries present in tx queue.
Returns
number of entries.
emberGpGetTxQueueEntryFromQueue#
EmberMessageBuffer emberGpGetTxQueueEntryFromQueue (EmberGpTxQueueEntry * txQueue, uint8_t * data, uint16_t * dataLength, uint16_t allocatedDataLength)
Gets an entry from Tx Queue The function searches the tx queue using gpd address pointed by supplied in the input/output argument txQueue and returns the message buffer that currently holding the outgoing gpdf information, returns EMBER_NULL_MESSAGE_BUFFER if not found.
Type | Direction | Argument Name | Description |
---|---|---|---|
EmberGpTxQueueEntry * | N/A | txQueue | EmberGpTxQueueEntry A pointer to an allocated memory to get a copy of the tx queue entry from the buffer queue. The caller populates the addr field of this parameter which is used as a search key. |
uint8_t * | N/A | data | A pointer to an allocated memory to get a copy of the gpd command payload if an entry is found. This can be passed as NULL if payload is not required by caller. |
uint16_t * | N/A | dataLength | A pointer to hold the length of the gpd command payload when an entry is found and the data collector is non-NULL. |
uint16_t | N/A | allocatedDataLength | Size in bytes for the allocated memory for the data collector. If this value is smaller compared to length of the data in the queue, no data gets copied out. |
Returns
Buffer EmberMessageBuffer that holds the entry if found, null message buffer if not found.
emberGpAddGpTxQueueEntryWithPayload#
EmberMessageBuffer emberGpAddGpTxQueueEntryWithPayload (EmberGpTxQueueEntry * txQueue, uint8_t * data, uint16_t dataLength)
Adds an entry to Tx Queue This function adds an entry along with supplied payload data to the Buffer queue. Returns the buffer handle if success else null message buffer upon failure.
Type | Direction | Argument Name | Description |
---|---|---|---|
EmberGpTxQueueEntry * | N/A | txQueue | EmberGpTxQueueEntry A pointer to an allocated memory holding the entry with all the members of the structure assigned as needed. |
uint8_t * | N/A | data | A pointer holding the data payload. Can be supplied as NULL if there is no data payload. |
uint16_t | N/A | dataLength | Length of the data. |
Returns
Buffer EmberMessageBuffer that holds the entry upon success else null message buffer.
emberGpRemoveFromTxQueue#
bool emberGpRemoveFromTxQueue (EmberGpTxQueueEntry * txQueue)
Remove an entry from Tx Queue This function searches and removes the entry provided.
Type | Direction | Argument Name | Description |
---|---|---|---|
EmberGpTxQueueEntry * | N/A | txQueue | EmberGpTxQueueEntry A pointer to an allocated memory holding the entry with gpd addr field assigned, which is used as for searching the tx queue. NOTE : Use of wildcard gpd addr (AppId = 0,SrcId = 0xFFFFFFFF) , removes all the entries of the tx queue. |
Returns
True upon success else false.
emberGpClearTxQueue#
void emberGpClearTxQueue (void )
Purges Tx Queue This function purges the tx queue.
Type | Direction | Argument Name | Description |
---|---|---|---|
void | N/A |