Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

application: serial_lte_modem: new nRF Cloud service #11573

Merged
merged 1 commit into from
Jul 4, 2023
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 applications/serial_lte_modem/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ target_sources_ifdef(CONFIG_SLM_NATIVE_TLS app PRIVATE src/slm_native_tls.c)
target_sources_ifdef(CONFIG_SLM_NATIVE_TLS app PRIVATE src/slm_at_cmng.c)

add_subdirectory_ifdef(CONFIG_SLM_GNSS src/gnss)
add_subdirectory_ifdef(CONFIG_SLM_NRF_CLOUD src/nrfcloud)
add_subdirectory_ifdef(CONFIG_SLM_FTPC src/ftp_c)
add_subdirectory_ifdef(CONFIG_SLM_MQTTC src/mqtt_c)
add_subdirectory_ifdef(CONFIG_SLM_HTTPC src/http_c)
Expand Down
10 changes: 9 additions & 1 deletion applications/serial_lte_modem/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ config SLM_AT_MODE
bool "Serial LTE Modem by raw AT mode"
default y
select AT_CMD_PARSER
select AT_MONITOR
MarkusLassila marked this conversation as resolved.
Show resolved Hide resolved

config SLM_AT_MAX_PARAM
int "Maximum number of parameters in AT command"
Expand Down Expand Up @@ -124,7 +125,14 @@ config SLM_SMS
help
Support SMS send/receive in plain text

rsource "src/gnss/Kconfig"
config SLM_GNSS
bool "GNSS support in SLM"
default y

config SLM_NRF_CLOUD
bool "nRF Cloud support in SLM"
default y

rsource "src/ftp_c/Kconfig"
rsource "src/mqtt_c/Kconfig"
rsource "src/http_c/Kconfig"
Expand Down
1 change: 1 addition & 0 deletions applications/serial_lte_modem/doc/AT_commands_intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ The modem-specific AT commands are documented in the `nRF91 AT Commands Referenc
TWI_AT_commands
GPIO_AT_commands
CARRIER_AT_commands
NRFCLOUD_AT_commands
Loading