Skip to content

Commit 93bb5ff

Browse files
committed
drivers: ieee802154: stm32wba driver update for isr registration
add parameter setting in the updated link_layer_register_isr() Signed-off-by: Vincent Tardy <vincent.tardy@st.com>
1 parent 808019e commit 93bb5ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

drivers/ieee802154/ieee802154_stm32wba.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ static void stm32wba_802154_iface_init(struct net_if *iface)
686686
.stm32wba_802154_ral_cbk_tx_ack_started = stm32wba_802154_tx_ack_started,
687687
};
688688

689-
link_layer_register_isr();
689+
link_layer_register_isr(0);
690690

691691
#if !defined(CONFIG_NET_L2_CUSTOM_IEEE802154_STM32WBA)
692692
ll_sys_thread_init();
@@ -995,7 +995,7 @@ static int radio_pm_action(const struct device *dev, enum pm_device_action actio
995995
if (LL_PWR_IsActiveFlag_SB() == 1U) {
996996
/* Put the radio in active state */
997997
LL_AHB5_GRP1_EnableClock(LL_AHB5_GRP1_PERIPH_RADIO);
998-
link_layer_register_isr();
998+
link_layer_register_isr(1);
999999
}
10001000
LINKLAYER_PLAT_NotifyWFIExit();
10011001
ll_sys_dp_slp_exit();

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ manifest:
250250
groups:
251251
- hal
252252
- name: hal_stm32
253-
revision: 5d27023564c9fbd9bb3aa51b0529ac3d2cf18134
253+
revision: pull/319/head
254254
path: modules/hal/stm32
255255
groups:
256256
- hal

0 commit comments

Comments
 (0)