Skip to content

Commit 2e62509

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. Signed-off-by: Nordic Builder <[email protected]> Signed-off-by: Kacper Radoszewski <[email protected]>
1 parent fd20d7a commit 2e62509

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

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)