27
27
* Include this file and corresponding header files
28
28
* Create the emberAfMainInitCallback() into the app.c file and initialize
29
29
* the command group : my_cli_command_group, and events
30
- * (look at the app.c of this project)
30
+ * (refer to app.c of this project as an example )
31
31
******************************************************************************/
32
32
33
33
/***************************************************************************/ /**
@@ -41,40 +41,42 @@ sl_zigbee_event_t networkOpenCtrl;
41
41
static EmberNodeId nodeTable [3 ] = {0 };
42
42
static int currentIndex = 0 ;
43
43
44
- // Create the CLI_Command_info
44
+ /// Create the CLI_Command_info
45
45
static const sl_cli_command_info_t myFormCreate_command =
46
- SL_CLI_COMMAND (eventNetworkFormHandler ,
47
- "Form and Create custom Network" ,
48
- "No argument" ,
49
- {SL_CLI_ARG_END , });
46
+ SL_CLI_COMMAND (eventNetworkFormHandler ,
47
+ "Form and Create custom Network" ,
48
+ "No argument" ,
49
+ {SL_CLI_ARG_END , });
50
+
50
51
static const sl_cli_command_info_t myOpenInstallCode_command =
51
- SL_CLI_COMMAND (networkOpenwithCodeHandler ,
52
- "Open the network with Install-code" ,
53
- "index<7:0>" SL_CLI_UNIT_SEPARATOR "eui64" SL_CLI_UNIT_SEPARATOR "install-code" SL_CLI_UNIT_SEPARATOR ,
54
- {SL_CLI_ARG_UINT8 , SL_CLI_ARG_HEX , SL_CLI_ARG_HEX , SL_CLI_ARG_END , });
52
+ SL_CLI_COMMAND (networkOpenwithCodeHandler ,
53
+ "Open the network with Install-code" ,
54
+ "index<7:0>" SL_CLI_UNIT_SEPARATOR "eui64" SL_CLI_UNIT_SEPARATOR "install-code" SL_CLI_UNIT_SEPARATOR ,
55
+ {SL_CLI_ARG_UINT8 , SL_CLI_ARG_HEX , SL_CLI_ARG_HEX , SL_CLI_ARG_END , });
55
56
56
- // Create the entries
57
+ /// Create the entries
57
58
const sl_cli_command_entry_t my_cli_commands [] = {
58
- {"form" , & myFormCreate_command , false},
59
- {"open" , & myOpenInstallCode_command , false},
60
- {NULL , NULL , false},
59
+ {"form" , & myFormCreate_command , false},
60
+ {"open" , & myOpenInstallCode_command , false},
61
+ {NULL , NULL , false},
61
62
};
62
63
63
- // Create the group of entries
64
+ /// Create the group of entries
64
65
sl_cli_command_group_t my_cli_command_group = {
65
- {NULL },
66
- false,
67
- my_cli_commands
66
+ {NULL },
67
+ false,
68
+ my_cli_commands
68
69
};
69
70
70
71
/***************************************************************************/ /**
71
72
* Functions & events.
72
73
******************************************************************************/
73
74
74
75
/**
75
- * Callback when Network Creator is completed
76
- * @param network
77
- * @param usedSecondaryChannels
76
+ * @brief Callback when Network Creator is completed
77
+ *
78
+ * @param network Network parameters
79
+ * @param usedSecondaryChannels Flag indicating use of Secondary channels
78
80
*/
79
81
void emberAfPluginNetworkCreatorCompleteCallback (const EmberNetworkParameters * network ,
80
82
bool usedSecondaryChannels )
@@ -93,8 +95,7 @@ void emberAfTrustCenterJoinCallback(EmberNodeId newNodeId,
93
95
emberAfCorePrintln ("Child 0x%x%x has %s the channel" , ((newNodeId >> 8 ) & 0xff ),
94
96
(newNodeId & 0xff ), ((status ) != EMBER_DEVICE_LEFT ) ? "joined" : "left" );
95
97
// JOINING ?
96
- if (status != EMBER_DEVICE_LEFT )
97
- {
98
+ if (status != EMBER_DEVICE_LEFT ) {
98
99
nodeTable [currentIndex ] = newNodeId ;
99
100
emberAfCorePrintln ("Current NodeID : 0x%x%x" ,(newNodeId >> 8 ) & 0xff ,
100
101
(newNodeId & 0xff ));
@@ -104,8 +105,9 @@ void emberAfTrustCenterJoinCallback(EmberNodeId newNodeId,
104
105
}
105
106
106
107
/**
107
- * CLI Function to form the network when : form
108
- * @param arguments
108
+ * @brief CLI Function to form the network when : form
109
+ *
110
+ * @param arguments CLI arguments when forming Network
109
111
*/
110
112
void eventNetworkFormHandler (sl_cli_command_arg_t * arguments )
111
113
{
@@ -117,20 +119,18 @@ void eventNetworkFormHandler(sl_cli_command_arg_t *arguments)
117
119
// Network Creation
118
120
state = emberAfNetworkState ();
119
121
120
- if (state != EMBER_JOINED_NETWORK )
121
- {
122
- status = emberAfPluginNetworkCreatorStart (true);
123
- emberAfCorePrintln ("%p network %p: 0x%X" , "Form" , "start" , status );
124
- }
125
- else
126
- {
127
- emberAfCorePrintln ("Network already created" );
122
+ if (state != EMBER_JOINED_NETWORK ) {
123
+ status = emberAfPluginNetworkCreatorStart (true);
124
+ emberAfCorePrintln ("%p network %p: 0x%X" , "Form" , "start" , status );
125
+ } else {
126
+ emberAfCorePrintln ("Network already created" );
128
127
}
129
128
}
130
129
131
130
/**
132
- * CLI Function to open the network with Install code
133
- * @param arguments
131
+ * @brief CLI Function to open the network with Install code
132
+ *
133
+ * @param arguments CLI arguments after open
134
134
*/
135
135
void networkOpenwithCodeHandler (sl_cli_command_arg_t * arguments )
136
136
{
@@ -150,15 +150,12 @@ void networkOpenwithCodeHandler(sl_cli_command_arg_t *arguments)
150
150
151
151
state = emberAfNetworkState ();
152
152
// Check if Network Created
153
- if (state != EMBER_JOINED_NETWORK )
154
- {
155
- emberAfCorePrintln ("Network not Joined, cannot open the network" );
156
- }
157
- else
158
- {
159
- emberAfCorePrintln ("Network UP, opening process launched" );
160
- emberAfCorePrintln ("Derived key from Install-Code : " );
161
- status = emberAfPluginNetworkCreatorSecurityOpenNetworkWithKeyPair (eui64 , keyData );
162
- emberAfCorePrintln ("Network Open with Key : 0x%X" , status );
153
+ if (state != EMBER_JOINED_NETWORK ) {
154
+ emberAfCorePrintln ("Network not Joined, cannot open the network" );
155
+ } else {
156
+ emberAfCorePrintln ("Network UP, opening process launched" );
157
+ emberAfCorePrintln ("Derived key from Install-Code : " );
158
+ status = emberAfPluginNetworkCreatorSecurityOpenNetworkWithKeyPair (eui64 , keyData );
159
+ emberAfCorePrintln ("Network Open with Key : 0x%X" , status );
163
160
}
164
161
}
0 commit comments