From 9be1899428190694ce7a5c08ea487051a39feabd Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Tue, 14 Jan 2025 21:43:38 +0100 Subject: [PATCH] fix(core): add missing interrupt disable to NRF driver [no changelog] --- core/embed/io/nrf/stm32u5/nrf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/embed/io/nrf/stm32u5/nrf.c b/core/embed/io/nrf/stm32u5/nrf.c index 90dc4c7f9d..4e8501e9f2 100644 --- a/core/embed/io/nrf/stm32u5/nrf.c +++ b/core/embed/io/nrf/stm32u5/nrf.c @@ -315,6 +315,7 @@ void nrf_deinit(void) { nrf_stop(); + NVIC_DisableIRQ(GPDMA1_Channel1_IRQn); NVIC_DisableIRQ(GPDMA1_Channel2_IRQn); NVIC_DisableIRQ(SPI1_IRQn);