Skip to content

Commit 0026013

Browse files
Updating to Silabs's standards
1 parent 56b7ace commit 0026013

File tree

93 files changed

+950
-1395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+950
-1395
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

Joining_InstallCode/src/JoinWithCode_CO/main.c

-72
This file was deleted.

Joining_InstallCode/src/JoinWithCode_CO/networkCreation.c

+42-45
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Include this file and corresponding header files
2828
* Create the emberAfMainInitCallback() into the app.c file and initialize
2929
* 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)
3131
******************************************************************************/
3232

3333
/***************************************************************************//**
@@ -41,40 +41,42 @@ sl_zigbee_event_t networkOpenCtrl;
4141
static EmberNodeId nodeTable[3] = {0};
4242
static int currentIndex = 0;
4343

44-
// Create the CLI_Command_info
44+
/// Create the CLI_Command_info
4545
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+
5051
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, });
5556

56-
// Create the entries
57+
/// Create the entries
5758
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},
6162
};
6263

63-
// Create the group of entries
64+
/// Create the group of entries
6465
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
6869
};
6970

7071
/***************************************************************************//**
7172
* Functions & events.
7273
******************************************************************************/
7374

7475
/**
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
7880
*/
7981
void emberAfPluginNetworkCreatorCompleteCallback(const EmberNetworkParameters *network,
8082
bool usedSecondaryChannels)
@@ -93,8 +95,7 @@ void emberAfTrustCenterJoinCallback(EmberNodeId newNodeId,
9395
emberAfCorePrintln("Child 0x%x%x has %s the channel", ((newNodeId >> 8) & 0xff),
9496
(newNodeId & 0xff), ((status) != EMBER_DEVICE_LEFT) ? "joined" : "left");
9597
// JOINING ?
96-
if(status != EMBER_DEVICE_LEFT)
97-
{
98+
if(status != EMBER_DEVICE_LEFT) {
9899
nodeTable[currentIndex] = newNodeId;
99100
emberAfCorePrintln("Current NodeID : 0x%x%x",(newNodeId >> 8) & 0xff,
100101
(newNodeId & 0xff));
@@ -104,8 +105,9 @@ void emberAfTrustCenterJoinCallback(EmberNodeId newNodeId,
104105
}
105106

106107
/**
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
109111
*/
110112
void eventNetworkFormHandler(sl_cli_command_arg_t *arguments)
111113
{
@@ -117,20 +119,18 @@ void eventNetworkFormHandler(sl_cli_command_arg_t *arguments)
117119
// Network Creation
118120
state = emberAfNetworkState();
119121

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");
128127
}
129128
}
130129

131130
/**
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
134134
*/
135135
void networkOpenwithCodeHandler(sl_cli_command_arg_t *arguments)
136136
{
@@ -150,15 +150,12 @@ void networkOpenwithCodeHandler(sl_cli_command_arg_t *arguments)
150150

151151
state = emberAfNetworkState();
152152
// 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);
163160
}
164161
}

Joining_InstallCode/src/JoinWithCode_Ro/main.c

-72
This file was deleted.

Joining_InstallCode/src/JoinWithCode_Ro/networkJoin.c

+23-22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***************************************************************************//**
22
* @file networkJoin.c
3-
* @brief File with Events and Function to create & open the network.
3+
* @brief File with Events and Function to join the network.
44
*******************************************************************************
55
* # License
66
* <b>Copyright 2021 Silicon Laboratories Inc. www.silabs.com</b>
@@ -36,48 +36,49 @@
3636
sl_zigbee_event_t eventRouterInfoCtrl;
3737

3838
static const sl_cli_command_info_t myJoinCommand =
39-
SL_CLI_COMMAND(myJoinHandler,
40-
"Function to join the network with install-code",
41-
"None",
42-
{SL_CLI_ARG_END});
39+
SL_CLI_COMMAND(myJoinHandler,
40+
"Function to join the network with install-code",
41+
"None",
42+
{SL_CLI_ARG_END});
43+
4344
const sl_cli_command_entry_t my_cli_commands[] = {
44-
{"join", &myJoinCommand, false},
45-
{NULL, NULL, false},
45+
{"join", &myJoinCommand, false},
46+
{NULL, NULL, false},
4647
};
4748

4849
sl_cli_command_group_t my_cli_command_group = {
49-
{NULL},
50-
false,
51-
my_cli_commands
50+
{NULL},
51+
false,
52+
my_cli_commands
5253
};
54+
5355
/***************************************************************************//**
5456
* Functions & events.
5557
******************************************************************************/
5658

5759
/**
58-
* CLI Handler to join a network with join command
59-
* @param arguments
60+
* @brief CLI Handler to join a network with join command
61+
*
62+
* @param arguments CLI arguments after join
6063
*/
61-
void myJoinHandler(sl_cli_argument_type_t *arguments)
64+
void myJoinHandler(sl_cli_command_arg_t *arguments)
6265
{
6366
// Launch the join process
6467
EmberStatus status;
6568
status = emberAfPluginNetworkSteeringStart();
6669

6770
// Check the status of the network Steering
68-
if (status == EMBER_SUCCESS)
69-
{
70-
emberAfCorePrintln("Start of Network Steering successful");
71-
}
72-
else
73-
{
74-
emberAfCorePrintln("ERROR to start Network Steering");
71+
if (status == EMBER_SUCCESS) {
72+
emberAfCorePrintln("Start of Network Steering successful");
73+
} else {
74+
emberAfCorePrintln("ERROR to start Network Steering");
7575
}
7676
}
7777

7878
/**
79-
* Event to print info of the router
80-
* @param context
79+
* @brief Event to print info of the router
80+
*
81+
* @param context Context of the event
8182
*/
8283
void myEventRouterInfoHandler(sl_zigbee_event_context_t *context)
8384
{

Joining_InstallCode/src/JoinWithCode_Ro/networkJoin.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***************************************************************************//**
22
* @file networkJoin.h
3-
* @brief File with Events and Function to create & open the network.
3+
* @brief Header file
44
*******************************************************************************
55
* # License
66
* <b>Copyright 2021 Silicon Laboratories Inc. www.silabs.com</b>
@@ -36,7 +36,7 @@
3636
* Function Prototypes
3737
******************************************************************************/
3838

39-
void myJoinHandler(sl_cli_argument_type_t *arguments);
39+
void myJoinHandler(sl_cli_command_arg_t *arguments);
4040
void myEventRouterInfoHandler(sl_zigbee_event_context_t *context);
4141

4242
/***************************************************************************//**

0 commit comments

Comments
 (0)