CLI commands for sending ZDO messages.
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.
/***************************************************************************/
// common include file
#include "app/framework/util/common.h"
#include "app/framework/util/af-main.h"
#include "app/util/serial/command-interpreter2.h"
#include "app/util/zigbee-framework/zigbee-device-common.h"
#if defined(EZSP_HOST)
#include "app/util/zigbee-framework/zigbee-device-host.h"
#else // SOC
#include "app/util/zigbee-framework/zigbee-device-library.h"
#endif
#include "app/framework/cli/option-cli.h"
//------------------------------------------------------------------------------
// Forward declarations
void zdoNwkAddressRequestCommand(void);
void zdoIeeeAddressRequestCommand(void);
void zdoSimpleCommand(void);
void zdoNodeCommand(void);
void zdoMatchCommand(void);
void zdoBindCommand(void);
void zdoAddClusterCommand(void);
void zdoClearClusterCommand(void);
void zdoNetworkUpdateChannelCommand(void);
void zdoNetworkUpdateScanCommand(void);
void zdoNetworkUpdateSetCommand(void);
void zdoActiveEpCommand(void);
void zdoMgmtLqiCommand(void);
void zdoMgmtBindCommand(void);
EmberStatus matchDescriptorsRequest(EmberNodeId target,
uint16_t profile,
uint8_t inCount,
uint8_t outCount,
uint16_t *inClusters,
uint16_t *outClusters,
EmberApsOption options);
//------------------------------------------------------------------------------
// Globals
#ifndef EMBER_AF_GENERATE_CLI
static const char * addClusterArguments[] = {
"ZCL Cluster to add.",
NULL,
};
static EmberCommandEntry zdoClusterCommands[] = {
emberCommandEntryActionWithDetails("add",
zdoAddClusterCommand,
"v",
"Add a ZCL cluster to the CLI's list.",
addClusterArguments),
emberCommandEntryAction("clear",
zdoClearClusterCommand,
"",
"Remove all ZCL clusters from the CLI's list"),
emberCommandEntryTerminator(),
};
static const char * channelChangeArguments[] = {
"Channel to change to.",
NULL,
};
static const char * channelScanArguments[] = {
"Target Node ID",
"Scan Duration", // see stack/include/zigbee-device-stack.h for enumeration
"Scan count",
NULL,
};
static const char * channelManagerArguments[] = {
"NWK manager node ID",
"Channel mask",
NULL,
};
static EmberCommandEntry zdoNetworkUpdateCommands[] = {
emberCommandEntryActionWithDetails("chan",
zdoNetworkUpdateChannelCommand,
"uu*",
"Send a channel change command.",
channelChangeArguments),
emberCommandEntryActionWithDetails("scan",
zdoNetworkUpdateScanCommand,
"vuvw*",
"Tell a remote node to perform a channel scan",
channelScanArguments),
emberCommandEntryActionWithDetails("set",
zdoNetworkUpdateSetCommand,
"vw",
"Broadcast a new NWK manager Node ID and channel list.",
channelManagerArguments),
emberCommandEntryTerminator(),
};
static const char * simpleDescriptorArguments[] = {
"The target node ID",
"The target endpoint",
NULL,
};
static const char * zdoMatchCommandArguments[] = {
"Target node ID",
"Profile ID",
NULL,
};
static const char * zdoBindCommandArguments[] = {
"Dest node ID",
"local EP",
"remote EP",
"cluster ID",
"THEIR EUI",
"binding dest EUI",
NULL,
};
static const char * zdoMgmtLqiCommandArguments[] = {
"Dest node ID",
"start index",
NULL,
};
EmberCommandEntry zdoCommands[] = {
emberCommandEntryAction("active",
zdoActiveEpCommand,
"v",
"Send an Active EP request"),
emberCommandEntryActionWithDetails("bind",
zdoBindCommand,
"vuuvbb",
"Sends bind request",
zdoBindCommandArguments),
emberCommandEntryAction("ieee",
zdoIeeeAddressRequestCommand,
"v",
"Unicast an IEEE address request to the specified node."),
emberCommandEntrySubMenu("in-cl-list",
zdoClusterCommands,
"Modify input cluster list"),
emberCommandEntryActionWithDetails("match",
zdoMatchCommand,
"vv",
"Send a match descriptor request using CLI configured in/out clusters.",
zdoMatchCommandArguments),
emberCommandEntryActionWithDetails("mgmt-lqi",
zdoMgmtLqiCommand,
"vu",
"Send a MGMT-LQI (LQI Table) request to target",
zdoMgmtLqiCommandArguments),
emberCommandEntryActionWithDetails("mgmt-bind",
zdoMgmtBindCommand,
"vu",
"Send a MGMT-Bind (Binding Table) request to target",
zdoMgmtLqiCommandArguments), // Binding Table Req uses same args as LQI Table Req
emberCommandEntryAction("node",
zdoNodeCommand,
"v",
"Send a node descriptor request to target"),
emberCommandEntryAction("nwk",
zdoNwkAddressRequestCommand,
"b",
"Broadcast a NWK address request for the specified IEEE."),
emberCommandEntrySubMenu("nwk-upd",
zdoNetworkUpdateCommands,
"Frequency Agility Commands"),
emberCommandEntrySubMenu("out-cl-list",
zdoClusterCommands,
"Modify output cluster list"),
emberCommandEntryActionWithDetails("simple",
zdoSimpleCommand,
"vu",
"Send a Simple Descriptor request to the target node and endpoint",
simpleDescriptorArguments),
emberCommandEntryTerminator(),
};
#endif // EMBER_AF_GENERATE_CLI
#define MAX_CLUSTERS_CAN_MATCH 5
uint16_t emAfCliZdoInClusters[MAX_CLUSTERS_CAN_MATCH];
uint16_t emAfCliZdoOutClusters[MAX_CLUSTERS_CAN_MATCH];
uint8_t emAfCliInClCount = 0;
uint8_t emAfCliOutClCount = 0;
//------------------------------------------------------------------------------
// *****************************************
// zdoCommand
//
// zdo nwk <eui64:big-endian>
// zdo ieee <node-id>
// zdo simple <dest> <target ep>
// zdo node <dest>
// zdo match <dest> <profile>
// zdo bind <dest> <local ep> <remote ep> <cluster> <THEIR eui> <dest eui>
// zdo in-cl-list add <cluster IDs>
// zdo in-cl-list clear
// zdo out-cl-list add <clusters IDs>
// zdo out-cl-list clear
// zdo nwk-upd chan <channel>
// zdo nwk-upd set <nwk mgr id> <chan mask>
// zdo nwk-upd scan <target> <duration> <count>
// zdo active <target>
// *****************************************
void zdoNwkAddressRequestCommand(void)
{
EmberEUI64 eui64;
emberCopyBigEndianEui64Argument(0, eui64);
emberAfFindNodeId(eui64,
emAfCliServiceDiscoveryCallback);
}
void zdoIeeeAddressRequestCommand(void)
{
EmberNodeId id = (EmberNodeId)emberUnsignedCommandArgument(0);
emberAfFindIeeeAddress(id,
emAfCliServiceDiscoveryCallback);
}
void zdoSimpleCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint8_t targetEndpoint = (uint8_t)emberUnsignedCommandArgument(1);
EmberStatus status = emberSimpleDescriptorRequest(target,
targetEndpoint,
EMBER_AF_DEFAULT_APS_OPTIONS);
emberAfAppPrintln("ZDO simple desc req %x", status);
}
void zdoNodeCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
EmberStatus status = emberNodeDescriptorRequest(target,
EMBER_AF_DEFAULT_APS_OPTIONS);
emberAfAppPrintln("ZDO node desc req %x", status);
}
void zdoMatchCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint16_t profile = (uint16_t)emberUnsignedCommandArgument(1);
EmberStatus status = matchDescriptorsRequest(target,
profile,
emAfCliInClCount,
emAfCliOutClCount,
emAfCliZdoInClusters,
emAfCliZdoOutClusters,
EMBER_AF_DEFAULT_APS_OPTIONS);
emberAfAppPrintln("ZDO match desc req %x", status);
}
static EmberStatus copyOrLookupEui64(uint8_t argumentNumber,
EmberNodeId nodeId,
EmberEUI64 returnEui64)
{
EmberStatus status = EMBER_SUCCESS;
if (0 == emberCopyBigEndianEui64Argument(argumentNumber, returnEui64)) {
status = emberLookupEui64ByNodeId(nodeId, returnEui64);
if (status != EMBER_SUCCESS) {
emberAfAppPrintln("Error: EUI64 argument is empty and lookup by node ID failed.");
}
}
return status;
}
// For simple bind requests, just put {} as the last argument
// zdo bind <dest> <local ep> <remote ep> <cluster> <THEIR EUI> {}
//
// More complex requests, you can actually specify the dest EUI64 of,
// the binding, which is NOT the same as the EUI64 of the destination
// of the device receiving the binding. This allows for a user
// to set multiple bindings on the destination for different devices.
// zdo bind <dest> <local ep> <remote ep> <cluster> <THEIR EUI> <dest EUI64>
void zdoBindCommand(void)
{
EmberStatus status;
EmberEUI64 sourceEui, destEui; // names relative to binding sent over-the-air
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint8_t sourceEndpoint = (uint8_t)emberUnsignedCommandArgument(1);
uint8_t destinationEndpoint = (uint8_t)emberUnsignedCommandArgument(2);
uint16_t clusterId = (uint16_t)emberUnsignedCommandArgument(3);
// NOTE: The source/dest EUI is relative to the context.
// In the case of the syntax of the CLI, we take "THEIR EUI64" to mean
// the recipient of the binding request message. However, when sending
// the bind request that EUI64 used by the ZDO command is
// actually the source for the binding because we are telling the remote
// device (the destination) to create a binding with a source of itself.
// And the destination for that binding will be this local device.
// This is also not to be confused with the (short) destination of the ZDO
// request itself.
if (EMBER_SUCCESS != copyOrLookupEui64(4, target, sourceEui)) {
return;
}
// If the last argument is empty, assume an EUI64 of the local device.
// This allows for the simple case. If an EUI64 is specified, it will
// be used instead of the local EUI. This is used for setting
// multiple bindings on the same remote device.
if (0 == emberCopyBigEndianEui64Argument(5, destEui)) {
emberAfAppPrintln("Using my local EUI64 for dest EUI64 in binding");
emberAfGetEui64(destEui);
}
status = emberBindRequest(target, // who gets the bind req
sourceEui, // source eui IN the binding
sourceEndpoint,
clusterId,
UNICAST_BINDING, // binding type
destEui, // destination eui IN the binding
0, // groupId for new binding
destinationEndpoint,
EMBER_AF_DEFAULT_APS_OPTIONS);
UNUSED_VAR(status);
emberAfAppPrintln("ZDO bind req %x", status);
}
void zdoAddClusterCommand(void)
{
uint16_t *clusters;
uint8_t *clCount;
if (emberStringCommandArgument(-2, NULL)[0] == 'i') {
clusters = emAfCliZdoInClusters;
clCount = &emAfCliInClCount;
} else {
clusters = emAfCliZdoOutClusters;
clCount = &emAfCliOutClCount;
}
if (*clCount < MAX_CLUSTERS_CAN_MATCH) {
clusters[*clCount] = (uint16_t)emberUnsignedCommandArgument(0);
(*clCount)++;
} else {
emberAfAppPrintln("cluster limit reached");
}
}
void zdoClearClusterCommand(void)
{
if (emberStringCommandArgument(-2, NULL)[0] == 'i') {
emAfCliInClCount = 0;
} else {
emAfCliOutClCount = 0;
}
}
void zdoNetworkUpdateChannelCommand(void)
{
uint8_t channel = (uint8_t)emberUnsignedCommandArgument(0);
uint8_t page = 0;
EmberStatus status;
if (emberCommandArgumentCount() > 1) {
page = (uint8_t)emberUnsignedCommandArgument(1);
} else {
// page and channels are encoded in 8 bits as page 7..5 bits
// channel 4...0 bits
// 3rd and 4th bits are always 1's
page = (uint8_t)(channel >> 5) | 0x18;
channel = channel & 0x1F;
}
if (EMBER_SUCCESS != emAfValidateChannelPages(page, channel)) {
emberAfAppPrintln("invalid page: %d or channel: %d", page, channel);
} else {
if (page == EMBER_NO_CHANNEL_PAGE_IN_USE) {
// Request for 2.4Ghz network if page is zero
status = emberChannelChangeRequest(channel);
} else {
// 31..27 bits for page and 26..0 for channels
uint32_t pageChannelBitMask = (page << 27 | BIT32(channel));
status = emberEnergyScanRequest(EMBER_SLEEPY_BROADCAST_ADDRESS,
pageChannelBitMask,
0xFE,
0);
}
emberAfAppPrintln("Change channel status: 0x%x", status);
}
}
void zdoNetworkUpdateScanCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint8_t scanDuration = (uint8_t)emberUnsignedCommandArgument(1);
uint16_t scanCount = (uint16_t)emberUnsignedCommandArgument(2);
uint32_t scanChannelsMask = EMBER_ALL_802_15_4_CHANNELS_MASK;
if (scanDuration > 5 || scanCount == 0 || scanCount > 8) {
emberAfAppPrintln("duration must be in range 0 - 5");
emberAfAppPrintln("count must be in range 1 - 8");
} else {
if (emberCommandArgumentCount() > 3) {
scanChannelsMask = emberUnsignedCommandArgument(3);
}
EmberStatus status = emberEnergyScanRequest(target,
scanChannelsMask,
scanDuration,
scanCount);
emberAfAppPrint("scan status 0x%x", status);
}
}
void zdoNetworkUpdateSetCommand(void)
{
EmberNodeId networkManager = (EmberNodeId)emberUnsignedCommandArgument(0);
uint32_t activeChannels = emberUnsignedCommandArgument(1);
EmberStatus status = emberSetNetworkManagerRequest(networkManager,
activeChannels);
emberAfAppPrint("network update set status 0x%x", status);
}
void zdoActiveEpCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
EmberStatus status = emberActiveEndpointsRequest(target,
EMBER_APS_OPTION_RETRY);
emberAfAppPrint("Active EP request status: 0x%X",
status);
}
void zdoMgmtLqiCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint8_t index = emberUnsignedCommandArgument(1);
EmberStatus status = emberLqiTableRequest(target,
index,
EMBER_APS_OPTION_RETRY);
emberAfAppPrint("LQI Table request: 0x%X", status);
}
void zdoMgmtBindCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint8_t index = emberUnsignedCommandArgument(1);
EmberStatus status = emberBindingTableRequest(target,
index,
EMBER_APS_OPTION_RETRY);
emberAfAppPrint("Binding Table request: 0x%X", status);
}
void zdoLeaveRequestCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
// CCB 2047
// - CCB makes the first step to depracate the 'leave and remove children' functionality.
// - We were proactive here and deprecated it right away.
// bool removeChildren = (bool)emberUnsignedCommandArgument(1);
bool rejoin = (bool)emberUnsignedCommandArgument(2);
EmberEUI64 nullEui64 = { 0, 0, 0, 0, 0, 0, 0, 0 };
EmberStatus status;
uint8_t options = 0;
if (rejoin) {
options |= EMBER_ZIGBEE_LEAVE_AND_REJOIN;
}
status = emberLeaveRequest(target,
nullEui64,
options,
EMBER_APS_OPTION_RETRY);
emberAfAppPrintln("Leave %p0x%X", "Request: ", status);
}
void zdoPowerDescriptorRequestCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
EmberStatus status = emberPowerDescriptorRequest(target,
EMBER_APS_OPTION_RETRY);
emberAfAppPrintln("Power Descriptor %p0x%X", "Request: ", status);
}
void zdoEndDeviceBindRequestCommand(void)
{
uint8_t endpoint = (uint8_t)emberUnsignedCommandArgument(0);
EmberStatus status = emberAfSendEndDeviceBind(endpoint);
emberAfAppPrintln("End Device Bind %p0x%X", "Request: ", status);
}
static void unbindRequest(bool isGroupAddress,
void* destination,
uint8_t destinationEndpoint)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint8_t sourceEndpoint = (uint8_t)emberUnsignedCommandArgument(2);
EmberAfClusterId clusterId = (EmberAfClusterId)emberUnsignedCommandArgument(3);
EmberEUI64 sourceEui64;
EmberEUI64 destinationEui64;
EmberStatus status;
EmberNodeId groupAddress = EMBER_NULL_NODE_ID;
if (EMBER_SUCCESS != copyOrLookupEui64(1, target, sourceEui64)) {
return;
}
if (isGroupAddress) {
groupAddress = *((EmberNodeId*)destination);
} else {
groupAddress = 0;
MEMMOVE(destinationEui64, destination, EUI64_SIZE);
}
status = emberUnbindRequest(target,
sourceEui64,
sourceEndpoint,
clusterId,
(isGroupAddress
? MULTICAST_BINDING
: UNICAST_BINDING),
destinationEui64,
groupAddress,
destinationEndpoint,
EMBER_APS_OPTION_RETRY);
UNUSED_VAR(status);
emberAfAppPrintln("Unbind %p %p0x%X",
(isGroupAddress
? "Group"
: "Unicast"),
"Request: ",
status);
}
void zdoUnbindGroupCommand(void)
{
EmberNodeId groupAddress = (EmberNodeId)emberUnsignedCommandArgument(4);
unbindRequest(true, // group addressed binding?
&groupAddress,
0); // destination endpoint (unused)
}
void zdoUnbindUnicastCommand(void)
{
EmberEUI64 destinationEui64;
uint8_t destinationEndpoint = (uint8_t)emberUnsignedCommandArgument(5);
// If the destination EUI64 of the binding (not the destination of the
// actual message) is empty, use our local EUI64.
if (0 == emberCopyBigEndianEui64Argument(4, destinationEui64)) {
emberAfAppPrintln("Using my local EUI64 for dest EUI64 in unbinding");
emberAfGetEui64(destinationEui64);
}
unbindRequest(false, // group addressed binding?
destinationEui64,
destinationEndpoint);
}
void zdoRouteRequestCommand(void)
{
EmberNodeId target = (EmberNodeId)emberUnsignedCommandArgument(0);
uint8_t index = (uint8_t)emberUnsignedCommandArgument(1);
EmberStatus status = emberRoutingTableRequest(target,
index,
EMBER_APS_OPTION_RETRY);
emberAfAppPrintln("Route Table %p0x%X", "Request: ", status);
}
//------------------------------------------------------------------------------
// Platform specific code
#if defined(EZSP_HOST)
EmberStatus matchDescriptorsRequest(EmberNodeId target,
uint16_t profile,
uint8_t inCount,
uint8_t outCount,
uint16_t *inClusters,
uint16_t *outClusters,
EmberApsOption options)
{
return ezspMatchDescriptorsRequest(target,
profile,
inCount,
outCount,
inClusters,
outClusters,
options);
}
#else
// Copy the list of uint16_t input and output cluster lists into
// message buffers.
EmberStatus matchDescriptorsRequest(EmberNodeId target,
uint16_t profile,
uint8_t inCount,
uint8_t outCount,
uint16_t *inClusters,
uint16_t *outClusters,
EmberApsOption options)
{
uint8_t i;
uint8_t output;
EmberMessageBuffer inClusterBuffer = EMBER_NULL_MESSAGE_BUFFER;
EmberMessageBuffer outClusterBuffer = EMBER_NULL_MESSAGE_BUFFER;
EmberStatus status = EMBER_NO_BUFFERS;
for (output = 0; output < 2; output++) {
EmberMessageBuffer* bufferPtr;
uint8_t count;
uint16_t* list;
if (output != 0U) {
count = outCount;
list = outClusters;
bufferPtr = &outClusterBuffer;
} else { // input
count = inCount;
list = inClusters;
bufferPtr = &inClusterBuffer;
}
if (count == 0) {
continue;
}
*bufferPtr = emberAllocateStackBuffer();
if (*bufferPtr == EMBER_NULL_MESSAGE_BUFFER) {
goto cleanup;
}
for (i = 0; i < count; i++) {
uint8_t cluster[2];
cluster[0] = LOW_BYTE(list[i]);
cluster[1] = HIGH_BYTE(list[i]);
status = emberAppendToLinkedBuffers(*bufferPtr,
cluster,
2);
if (EMBER_SUCCESS != status) {
goto cleanup;
}
}
}
status = emberMatchDescriptorsRequest(target,
profile,
inClusterBuffer,
outClusterBuffer,
options);
cleanup:
if (inClusterBuffer != EMBER_NULL_MESSAGE_BUFFER) {
emberReleaseMessageBuffer(inClusterBuffer);
}
if (outClusterBuffer != EMBER_NULL_MESSAGE_BUFFER) {
emberReleaseMessageBuffer(outClusterBuffer);
}
return status;
}
#endif // !defined(EZSP_HOST)
Macros#
#define
Variables#
const char *
EmberCommandEntry
const char *
const char *
const char *
EmberCommandEntry
const char *
const char *
const char *
const char *
EmberCommandEntry
uint16_t
uint16_t
uint8_t
uint8_t
Functions#
void
void
void
zdoSimpleCommand(void)
void
zdoNodeCommand(void)
void
zdoMatchCommand(void)
void
zdoBindCommand(void)
void
zdoAddClusterCommand(void)
void
zdoClearClusterCommand(void)
void
void
void
void
zdoActiveEpCommand(void)
void
zdoMgmtLqiCommand(void)
void
zdoMgmtBindCommand(void)
matchDescriptorsRequest(EmberNodeId target, uint16_t profile, uint8_t inCount, uint8_t outCount, uint16_t *inClusters, uint16_t *outClusters, EmberApsOption options)
copyOrLookupEui64(uint8_t argumentNumber, EmberNodeId nodeId, EmberEUI64 returnEui64)
void
zdoLeaveRequestCommand(void)
void
void
void
unbindRequest(bool isGroupAddress, void *destination, uint8_t destinationEndpoint)
void
zdoUnbindGroupCommand(void)
void
zdoUnbindUnicastCommand(void)
void
zdoRouteRequestCommand(void)
Macro Definition Documentation#
MAX_CLUSTERS_CAN_MATCH#
#define MAX_CLUSTERS_CAN_MATCHValue:
5
Definition at line
204
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
Variable Documentation#
addClusterArguments#
const char* addClusterArguments[]
Definition at line
65
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoClusterCommands#
EmberCommandEntry zdoClusterCommands[]
Definition at line
70
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
channelChangeArguments#
const char* channelChangeArguments[]
Definition at line
83
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
channelScanArguments#
const char* channelScanArguments[]
Definition at line
88
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
channelManagerArguments#
const char* channelManagerArguments[]
Definition at line
95
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoNetworkUpdateCommands#
EmberCommandEntry zdoNetworkUpdateCommands[]
Definition at line
101
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
simpleDescriptorArguments#
const char* simpleDescriptorArguments[]
Definition at line
120
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoMatchCommandArguments#
const char* zdoMatchCommandArguments[]
Definition at line
126
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoBindCommandArguments#
const char* zdoBindCommandArguments[]
Definition at line
132
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoMgmtLqiCommandArguments#
const char* zdoMgmtLqiCommandArguments[]
Definition at line
142
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoCommands#
EmberCommandEntry zdoCommands[]
Definition at line
148
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
emAfCliZdoInClusters#
uint16_t emAfCliZdoInClusters[MAX_CLUSTERS_CAN_MATCH]
Definition at line
205
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
Referenced by zdoAddClusterCommand , and zdoMatchCommand
emAfCliZdoOutClusters#
uint16_t emAfCliZdoOutClusters[MAX_CLUSTERS_CAN_MATCH]
Definition at line
206
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
Referenced by zdoAddClusterCommand , and zdoMatchCommand
emAfCliInClCount#
uint8_t emAfCliInClCount
Definition at line
207
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
emAfCliOutClCount#
uint8_t emAfCliOutClCount
Definition at line
208
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
Function Documentation#
zdoNwkAddressRequestCommand#
void zdoNwkAddressRequestCommand (void )
Parameters
N/A |
Definition at line
231
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
References emAfCliServiceDiscoveryCallback , and emberAfFindNodeId
zdoIeeeAddressRequestCommand#
void zdoIeeeAddressRequestCommand (void )
Parameters
N/A |
Definition at line
239
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
References emAfCliServiceDiscoveryCallback , and emberAfFindIeeeAddress
zdoSimpleCommand#
void zdoSimpleCommand (void )
Parameters
N/A |
Definition at line
246
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoNodeCommand#
void zdoNodeCommand (void )
Parameters
N/A |
Definition at line
256
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoMatchCommand#
void zdoMatchCommand (void )
Parameters
N/A |
Definition at line
264
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
References emAfCliInClCount , emAfCliOutClCount , emAfCliZdoInClusters , emAfCliZdoOutClusters , and matchDescriptorsRequest
zdoBindCommand#
void zdoBindCommand (void )
Parameters
N/A |
Definition at line
300
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoAddClusterCommand#
void zdoAddClusterCommand (void )
Parameters
N/A |
Definition at line
344
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
References emAfCliInClCount , emAfCliOutClCount , emAfCliZdoInClusters , emAfCliZdoOutClusters , and MAX_CLUSTERS_CAN_MATCH
zdoClearClusterCommand#
void zdoClearClusterCommand (void )
Parameters
N/A |
Definition at line
364
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
References emAfCliInClCount , and emAfCliOutClCount
zdoNetworkUpdateChannelCommand#
void zdoNetworkUpdateChannelCommand (void )
Parameters
N/A |
Definition at line
373
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoNetworkUpdateScanCommand#
void zdoNetworkUpdateScanCommand (void )
Parameters
N/A |
Definition at line
407
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoNetworkUpdateSetCommand#
void zdoNetworkUpdateSetCommand (void )
Parameters
N/A |
Definition at line
429
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoActiveEpCommand#
void zdoActiveEpCommand (void )
Parameters
N/A |
Definition at line
438
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoMgmtLqiCommand#
void zdoMgmtLqiCommand (void )
Parameters
N/A |
Definition at line
447
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoMgmtBindCommand#
void zdoMgmtBindCommand (void )
Parameters
N/A |
Definition at line
457
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
matchDescriptorsRequest#
EmberStatus matchDescriptorsRequest (EmberNodeId target, uint16_t profile, uint8_t inCount, uint8_t outCount, uint16_t * inClusters, uint16_t * outClusters, EmberApsOption options)
Parameters
N/A | target | |
N/A | profile | |
N/A | inCount | |
N/A | outCount | |
N/A | inClusters | |
N/A | outClusters | |
N/A | options |
Definition at line
609
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
References EMBER_NO_BUFFERS , and EMBER_SUCCESS
copyOrLookupEui64#
static EmberStatus copyOrLookupEui64 (uint8_t argumentNumber, EmberNodeId nodeId, EmberEUI64 returnEui64)
Parameters
N/A | argumentNumber | |
N/A | nodeId | |
N/A | returnEui64 |
Definition at line
278
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoLeaveRequestCommand#
void zdoLeaveRequestCommand (void )
Parameters
N/A |
Definition at line
467
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
References EMBER_APS_OPTION_RETRY , and EMBER_ZIGBEE_LEAVE_AND_REJOIN
zdoPowerDescriptorRequestCommand#
void zdoPowerDescriptorRequestCommand (void )
Parameters
N/A |
Definition at line
491
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoEndDeviceBindRequestCommand#
void zdoEndDeviceBindRequestCommand (void )
Parameters
N/A |
Definition at line
499
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
unbindRequest#
static void unbindRequest (bool isGroupAddress, void * destination, uint8_t destinationEndpoint)
Parameters
N/A | isGroupAddress | |
N/A | destination | |
N/A | destinationEndpoint |
Definition at line
506
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoUnbindGroupCommand#
void zdoUnbindGroupCommand (void )
Parameters
N/A |
Definition at line
549
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoUnbindUnicastCommand#
void zdoUnbindUnicastCommand (void )
Parameters
N/A |
Definition at line
557
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c
zdoRouteRequestCommand#
void zdoRouteRequestCommand (void )
Parameters
N/A |
Definition at line
574
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/app/framework/cli/zdo-cli.c