Skip to content

Commit 19118a4

Browse files
NordicBuilderkacperradoszewski
authored andcommitted
manifest: Update sdk-nrfxlib revision (auto-manifest PR)
Automatically created by Github Action samples: dect_phy: hello_dect: add missing event in the event handler * Added handling for NRF_MODEM_DECT_PHY_EVT_TEST_RF_TX_CW_CONTROL_CONFIG in the event handler. applications: serial_lte_modem: remove a build from sample.yaml * Removed the configuration for the SLM build with LwM2M Carrier on the Thingy91. This no longer fits the available flash space and we are also not maintaining this build anymore. Signed-off-by: Nordic Builder <[email protected]> Signed-off-by: Kacper Radoszewski <[email protected]>
1 parent fd20d7a commit 19118a4

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

applications/serial_lte_modem/sample.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -268,20 +268,6 @@ tests:
268268
- ci_build
269269
- sysbuild
270270
- ci_applications_serial_lte_modem
271-
applications.serial_lte_modem.lwm2m_carrier.thingy91:
272-
sysbuild: true
273-
build_only: true
274-
extra_args:
275-
- EXTRA_CONF_FILE=overlay-carrier.conf
276-
- SB_CONFIG_THINGY91_STATIC_PARTITIONS_LWM2M_CARRIER=y
277-
platform_allow:
278-
- thingy91/nrf9160/ns
279-
integration_platforms:
280-
- thingy91/nrf9160/ns
281-
tags:
282-
- ci_build
283-
- sysbuild
284-
- ci_applications_serial_lte_modem
285271
applications.serial_lte_modem.tracing:
286272
sysbuild: true
287273
build_only: true

samples/dect/dect_phy/hello_dect/src/main.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,11 @@ static void on_stf_cover_seq_control(const struct nrf_modem_dect_phy_stf_control
183183
LOG_WRN("Unexpectedly in %s\n", (__func__));
184184
}
185185

186+
static void on_test_rf_tx_cw_ctrl(const struct nrf_modem_dect_phy_test_rf_tx_cw_control_event *evt)
187+
{
188+
LOG_WRN("Unexpectedly in %s\n", (__func__));
189+
}
190+
186191
static void dect_phy_event_handler(const struct nrf_modem_dect_phy_event *evt)
187192
{
188193
modem_time = evt->time;
@@ -245,6 +250,9 @@ static void dect_phy_event_handler(const struct nrf_modem_dect_phy_event *evt)
245250
case NRF_MODEM_DECT_PHY_EVT_STF_CONFIG:
246251
on_stf_cover_seq_control(&evt->stf_cover_seq_control);
247252
break;
253+
case NRF_MODEM_DECT_PHY_EVT_TEST_RF_TX_CW_CONTROL_CONFIG:
254+
on_test_rf_tx_cw_ctrl(&evt->test_rf_tx_cw_control);
255+
break;
248256
}
249257
}
250258

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ manifest:
144144
- name: nrfxlib
145145
repo-path: sdk-nrfxlib
146146
path: nrfxlib
147-
revision: 6d9f3b8888ff9622e7379d12ebb8dad3e3530481
147+
revision: pull/1897/head
148148
- name: trusted-firmware-m
149149
repo-path: sdk-trusted-firmware-m
150150
path: modules/tee/tf-m/trusted-firmware-m

0 commit comments

Comments
 (0)