Zigbee Protocol Controller 1.6.0
zigpc_common_unid.h
Go to the documentation of this file.
1/******************************************************************************
2 * # License
3 * <b>Copyright 2020 Silicon Laboratories Inc. www.silabs.com</b>
4 ******************************************************************************
5 * The licensor of this software is Silicon Laboratories Inc. Your use of this
6 * software is governed by the terms of Silicon Labs Master Software License
7 * Agreement (MSLA) available at
8 * www.silabs.com/about-us/legal/master-software-license-agreement. This
9 * software is distributed to you in Source Code format and is governed by the
10 * sections of the MSLA applicable to Source Code.
11 *
12 *****************************************************************************/
13
14#ifndef ZIGPC_COMMON_UNID_H
15#define ZIGPC_COMMON_UNID_H
16
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#define ZIGPC_UNID_PREFIX "zb-"
31#define ZIGPC_UNID_PREFIX_LENGTH 3
32
33#define ZIGPC_EUI64_STRING_LENGTH 16
34
35#define UCL_TOP_LEVEL "ucl/"
36#define UCL_BY_UNID "by-unid/"
37#define UCL_EP_PREFIX "/ep"
38#define UCL_NODE_STATE "/State"
39#define UCL_PROTOCOL_CONTROLLER "/ProtocolController"
40
41#define UCL_ATTRIBUTE_TOPIC "/Attributes"
42#define UCL_ATTRIBUTE_REPORTED_TOPIC "/Reported"
43#define UCL_ATTRIBUTE_DESIRED_TOPIC "/Desired"
44
45#define UCL_COMMAND_TOPIC "/Commands"
46#define UCL_SUPPORTED_COMMAND_TOPIC "/SupportedCommands"
47#define UCL_GENERATED_COMMAND_TOPIC "/SupportedGeneratedCommands"
48
49#define UCL_VALUE "\"value\""
50
51#ifdef __cplusplus
52}
53#endif
54
55#endif /* ZIGPC_COMMON_UNID_H */
56