Skip to content

Commit e2ce4af

Browse files
committed
modules: fota: Cleanup and update tests
Cleanup module according to interval state diagrams Update tests Diagrams will be publica later Signed-off-by: Simen S. Røstad <simen.rostad@nordicsemi.no>
1 parent 632dddc commit e2ce4af

17 files changed

+824
-310
lines changed

app/prj.conf

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ CONFIG_SHELL_STACK_SIZE=1560
7272
CONFIG_AT_SHELL=y
7373

7474
# nRF Cloud
75+
CONFIG_NRF_CLOUD=y
7576
CONFIG_NRF_CLOUD_COAP=y
7677
CONFIG_NRF_CLOUD_COAP_DISCONNECT_ON_FAILED_REQUEST=y
7778
CONFIG_MODEM_JWT=y

app/src/common/message_channel.c

-8
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,3 @@ ZBUS_CHAN_DEFINE(CONFIG_CHAN,
2525
ZBUS_OBSERVERS_EMPTY,
2626
ZBUS_MSG_INIT(0)
2727
);
28-
29-
ZBUS_CHAN_DEFINE(TIME_CHAN,
30-
enum time_status,
31-
NULL,
32-
NULL,
33-
ZBUS_OBSERVERS_EMPTY,
34-
ZBUS_MSG_INIT(0)
35-
);

app/src/common/message_channel.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@ struct configuration {
7979

8080
ZBUS_CHAN_DECLARE(
8181
CONFIG_CHAN,
82-
ERROR_CHAN,
83-
TIME_CHAN
82+
ERROR_CHAN
8483
);
8584

8685
#ifdef __cplusplus

0 commit comments

Comments
 (0)