Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ target_sources(app PRIVATE src/sm_at_commands.c)
target_sources(app PRIVATE src/sm_at_socket.c)
target_sources(app PRIVATE src/sm_at_icmp.c)
target_sources(app PRIVATE src/sm_at_fota.c)
target_sources(app PRIVATE src/sm_at_dfu.c)
target_sources(app PRIVATE src/sm_uart_handler.c)
# NORDIC SDK APP END
target_sources_ifdef(CONFIG_SM_SMS app PRIVATE src/sm_at_sms.c)
Expand Down
3 changes: 3 additions & 0 deletions app/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ config SM_MQTTC
config SM_FULL_FOTA
bool "Full modem FOTA support"

config SM_DFU_MODEM_FULL
bool "Full modem DFU support"

config SM_PPP
bool "PPP support"

Expand Down
11 changes: 11 additions & 0 deletions app/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,17 @@ tests:
- thingy91x/nrf9151/ns
integration_platforms:
- nrf9151dk/nrf9151/ns
serial_modem.mfw_full_fota_and_dfu:
sysbuild: true
build_only: true
extra_args:
- EXTRA_CONF_FILE="overlay-full_fota.conf"
extra_configs:
- CONFIG_SM_DFU_MODEM_FULL=y
platform_allow:
- nrf9151dk/nrf9151/ns
integration_platforms:
- nrf9151dk/nrf9151/ns
serial_modem.lwm2m_carrier:
sysbuild: true
build_only: true
Expand Down
3 changes: 3 additions & 0 deletions app/scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This file lists all the dependencies required to run the sm_dfu_host.py script.
pyserial
cbor2
Loading