Skip to content

Commit ffab96a

Browse files
committedJan 10, 2025
modules: network: Add test cases and fix implementation accordingly
Add more test cases to cover all input and output event types that the network module supports. Implementation added and fixed for those not working as intended. Signed-off-by: Jan Tore Guggedal <jantore.guggedal@nordicsemi.no>
1 parent 22a4ff5 commit ffab96a

File tree

4 files changed

+376
-44
lines changed

4 files changed

+376
-44
lines changed
 

‎app/src/common/message_channel.h

+61-1
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,85 @@ struct payload {
5555

5656
enum network_msg_type {
5757
/* Output message types */
58+
59+
/* The device is disconnected from the network */
5860
NETWORK_DISCONNECTED = 0x1,
61+
62+
/* The device is connected to the network and has an IP address */
5963
NETWORK_CONNECTED,
64+
65+
/* The modem has detected a reset loop with too many attach requests within a short time.
66+
* Refer to the AT command manual for more information on the details for your specific
67+
* modem firmware version.
68+
*/
6069
NETWORK_MODEM_RESET_LOOP,
70+
71+
/* The modem has detected an error with the SIM card. Confirm that it is installed
72+
* correctly.
73+
*/
6174
NETWORK_UICC_FAILURE,
75+
76+
/* The modem has completed a light search based on previous cell hostory for network to
77+
* attach to without finding a suitable cell accoring to 3GPP selection rules.
78+
* The modem will continue with a more thorough search unless it is explicitly stopped.
79+
*/
6280
NETWORK_LIGHT_SERACH_DONE,
81+
82+
/* A network attach request has been rejected by the network. */
6383
NETWORK_ATTACH_REJECTED,
84+
85+
/* Updated PSM parameters have been received and are found as payload in the message.
86+
* The parameters are located in the .psm_cfg field of the message.
87+
*/
6488
NETWORK_PSM_PARAMS,
89+
90+
/* Updated eDRX parameters have been received and are found as payload in the message.
91+
* The parameters are located in the .edrx_cfg field of the message.
92+
*/
6593
NETWORK_EDRX_PARAMS,
94+
95+
/* Response message to a request for the current system mode. The current system mode is
96+
* found in the .system_mode field of the message. In this context, "current system mode"
97+
* refers to the system mode that the modem is currently configured to use and may include
98+
* both LTE-M and NB-IoT. It does not reflect if the modem is currently connected to a
99+
* network using a specific system mode.
100+
*/
66101
NETWORK_SYSTEM_MODE_RESPONSE,
102+
103+
/* Response message to a request for a network quality sample. The sample is found in the
104+
* .conn_eval_params field of the message.
105+
*/
67106
NETWORK_QUALITY_SAMPLE_RESPONSE,
68107

69108
/* Input message types */
109+
110+
/* Request to connect to the network, which includes searching for a suitable network
111+
* and attempting to attach to it if a usable cell is found.
112+
*/
70113
NETWORK_CONNECT,
114+
115+
/* Request to disconnect from the network */
71116
NETWORK_DISCONNECT,
117+
118+
/* Stop searching for a network. This will stop the modem's search for a suitable network
119+
* and it will not resume before explicitly requested to do so by a NETWORK_CONNECT message.
120+
*/
72121
NETWORK_SEARCH_STOP,
73-
NETWORK_SEARCH_START,
122+
123+
/* Request to sample the current network connection quality. The result is sent as a
124+
* NETWORK_QUALITY_SAMPLE_RESPONSE message if possible to obtain.
125+
*/
74126
NETWORK_QUALITY_SAMPLE_REQUEST,
127+
128+
/* Request to set the system mode to only use LTE-M access technology. */
75129
NETWORK_SYSTEM_MODE_SET_LTE_M,
130+
131+
/* Request to set the system mode to only use NB-IoT access technology. */
76132
NETWORK_SYSTEM_MODE_SET_NBIOT,
133+
134+
/* Request to retrieve the current system mode. The response is sent as a
135+
* NETWORK_SYSTEM_MODE_RESPONSE message.
136+
*/
77137
NETWORK_SYSTEM_MODE_REQUEST,
78138
};
79139

‎app/src/modules/network/network.c

+46-10
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ enum network_module_state {
6767
/* State object.
6868
* Used to transfer context data between state changes.
6969
*/
70-
struct state_object {
70+
struct network_state_object {
7171
/* This must be first */
7272
struct smf_ctx ctx;
7373

@@ -87,10 +87,11 @@ static void state_disconnected_idle_run(void *obj);
8787
static void state_disconnected_searching_entry(void *obj);
8888
static void state_disconnected_searching_run(void *obj);
8989
static void state_disconnecting_entry(void *obj);
90+
static void state_disconnecting_run(void *obj);
9091
static void state_connected_run(void *obj);
9192
static void state_connected_entry(void *obj);
9293

93-
static struct state_object network_state;
94+
static struct network_state_object network_state;
9495

9596
/* State machine definition */
9697
static const struct smf_state states[] = {
@@ -116,7 +117,7 @@ static const struct smf_state states[] = {
116117
&states[STATE_RUNNING],
117118
NULL), /* No initial transition */
118119
[STATE_DISCONNECTING] =
119-
SMF_CREATE_STATE(state_disconnecting_entry, NULL, NULL,
120+
SMF_CREATE_STATE(state_disconnecting_entry, state_disconnecting_run, NULL,
120121
&states[STATE_RUNNING],
121122
NULL), /* No initial transition */
122123
};
@@ -221,7 +222,7 @@ static void lte_lc_evt_handler(const struct lte_lc_evt *const evt)
221222
.edrx_cfg = evt->edrx_cfg,
222223
};
223224

224-
LOG_DBG("eDRX parameters received, mode: %d, eDRX: %0.2f s, PTW: %f s",
225+
LOG_DBG("eDRX parameters received, mode: %d, eDRX: %0.2f s, PTW: %.02f s",
225226
msg.edrx_cfg.mode, (double)msg.edrx_cfg.edrx, (double)msg.edrx_cfg.ptw);
226227

227228
network_msg_send(&msg);
@@ -256,6 +257,24 @@ static void sample_network_quality(void)
256257
network_msg_send(&msg);
257258
}
258259

260+
static void request_system_mode(void)
261+
{
262+
int err;
263+
struct network_msg msg = {
264+
.type = NETWORK_SYSTEM_MODE_RESPONSE,
265+
};
266+
enum lte_lc_system_mode_preference dummy_preference;
267+
268+
err = lte_lc_system_mode_get(&msg.system_mode, &dummy_preference);
269+
if (err) {
270+
LOG_ERR("lte_lc_system_mode_get, error: %d", err);
271+
SEND_FATAL_ERROR();
272+
return;
273+
}
274+
275+
network_msg_send(&msg);
276+
}
277+
259278
static int network_disconnect(void)
260279
{
261280
int err;
@@ -306,7 +325,7 @@ static void state_running_entry(void *obj)
306325

307326
static void state_running_run(void *obj)
308327
{
309-
struct state_object const *state_object = obj;
328+
struct network_state_object const *state_object = obj;
310329

311330
LOG_DBG("state_running_run");
312331

@@ -323,6 +342,9 @@ static void state_running_run(void *obj)
323342
case NETWORK_QUALITY_SAMPLE_REQUEST:
324343
sample_network_quality();
325344
break;
345+
case NETWORK_SYSTEM_MODE_REQUEST:
346+
request_system_mode();
347+
break;
326348
default:
327349
break;
328350
}
@@ -350,7 +372,7 @@ static void state_disconnected_entry(void *obj)
350372

351373
static void state_disconnected_run(void *obj)
352374
{
353-
struct state_object const *state_object = obj;
375+
struct network_state_object const *state_object = obj;
354376

355377
LOG_DBG("state_disconnected_run");
356378

@@ -398,7 +420,7 @@ static void state_disconnected_searching_entry(void *obj)
398420

399421
static void state_disconnected_searching_run(void *obj)
400422
{
401-
struct state_object const *state_object = obj;
423+
struct network_state_object const *state_object = obj;
402424

403425
LOG_DBG("state_disconnected_searching_run");
404426

@@ -421,7 +443,7 @@ static void state_disconnected_searching_run(void *obj)
421443

422444
static void state_disconnected_idle_run(void *obj)
423445
{
424-
struct state_object const *state_object = obj;
446+
struct network_state_object const *state_object = obj;
425447

426448
LOG_DBG("state_disconnected_idle_run");
427449

@@ -432,7 +454,6 @@ static void state_disconnected_idle_run(void *obj)
432454
case NETWORK_DISCONNECT:
433455
STATE_EVENT_HANDLED(network_state);
434456
break;
435-
case NETWORK_SEARCH_START: __fallthrough;
436457
case NETWORK_CONNECT:
437458
STATE_SET(network_state, STATE_DISCONNECTED_SEARCHING);
438459
break;
@@ -451,7 +472,7 @@ static void state_connected_entry(void *obj)
451472

452473
static void state_connected_run(void *obj)
453474
{
454-
struct state_object const *state_object = obj;
475+
struct network_state_object const *state_object = obj;
455476

456477
LOG_DBG("state_connected_run");
457478

@@ -492,6 +513,21 @@ static void state_disconnecting_entry(void *obj)
492513
}
493514
}
494515

516+
static void state_disconnecting_run(void *obj)
517+
{
518+
struct network_state_object const *state_object = obj;
519+
520+
LOG_DBG("state_disconnecting_run");
521+
522+
if (&NETWORK_CHAN == state_object->chan) {
523+
struct network_msg msg = MSG_TO_NETWORK_MSG(state_object->msg_buf);
524+
525+
if (msg.type == NETWORK_DISCONNECTED) {
526+
STATE_SET(network_state, STATE_DISCONNECTED_IDLE);
527+
}
528+
}
529+
}
530+
495531
static void network_wdt_callback(int channel_id, void *user_data)
496532
{
497533
LOG_ERR("Network watchdog expired, Channel: %d, Thread: %s",

‎tests/module/network/prj.conf

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
CONFIG_UNITY=y
88
CONFIG_ZBUS=y
99
CONFIG_LOG=y
10+
CONFIG_LOG_MODE_IMMEDIATE=y
1011
CONFIG_ZBUS_OBSERVER_NAME=y
1112
CONFIG_ZBUS_CHANNEL_NAME=y
1213
CONFIG_ZBUS_MSG_SUBSCRIBER=y

0 commit comments

Comments
 (0)