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
14 changes: 0 additions & 14 deletions applications/serial_lte_modem/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268,20 +268,6 @@ tests:
- ci_build
- sysbuild
- ci_applications_serial_lte_modem
applications.serial_lte_modem.lwm2m_carrier.thingy91:
sysbuild: true
build_only: true
extra_args:
- EXTRA_CONF_FILE=overlay-carrier.conf
- SB_CONFIG_THINGY91_STATIC_PARTITIONS_LWM2M_CARRIER=y
platform_allow:
- thingy91/nrf9160/ns
integration_platforms:
- thingy91/nrf9160/ns
tags:
- ci_build
- sysbuild
- ci_applications_serial_lte_modem
applications.serial_lte_modem.tracing:
sysbuild: true
build_only: true
Expand Down
8 changes: 8 additions & 0 deletions samples/dect/dect_phy/hello_dect/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@ static void on_stf_cover_seq_control(const struct nrf_modem_dect_phy_stf_control
LOG_WRN("Unexpectedly in %s\n", (__func__));
}

static void on_test_rf_tx_cw_ctrl(const struct nrf_modem_dect_phy_test_rf_tx_cw_control_event *evt)
{
LOG_WRN("Unexpectedly in %s\n", (__func__));
}

static void dect_phy_event_handler(const struct nrf_modem_dect_phy_event *evt)
{
modem_time = evt->time;
Expand Down Expand Up @@ -245,6 +250,9 @@ static void dect_phy_event_handler(const struct nrf_modem_dect_phy_event *evt)
case NRF_MODEM_DECT_PHY_EVT_STF_CONFIG:
on_stf_cover_seq_control(&evt->stf_cover_seq_control);
break;
case NRF_MODEM_DECT_PHY_EVT_TEST_RF_TX_CW_CONTROL_CONFIG:
on_test_rf_tx_cw_ctrl(&evt->test_rf_tx_cw_control);
break;
}
}

Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ manifest:
- name: nrfxlib
repo-path: sdk-nrfxlib
path: nrfxlib
revision: fede91a487538447342bf34ab9008bbd47fa7e18
revision: d6891b378f3c64c19d2a0d79c064c90f3f049f71
- name: trusted-firmware-m
repo-path: sdk-trusted-firmware-m
path: modules/tee/tf-m/trusted-firmware-m
Expand Down
Loading