summaryrefslogtreecommitdiffstats
path: root/Core/Src/stm32u0xx_hal_msp.c
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2025-01-30 07:24:10 -0500
committerClyne Sullivan <clyne@bitgloo.com>2025-01-30 07:24:10 -0500
commit914a918465d099dca3f709ea2a20673aaa93560c (patch)
tree001c9fe6e638f31655e6a06355f802b4cf0d3ed6 /Core/Src/stm32u0xx_hal_msp.c
parent6c4c5c656b7fc0ea55df4e6f107722c5879345ab (diff)
microphone handling going well
Diffstat (limited to 'Core/Src/stm32u0xx_hal_msp.c')
-rw-r--r--Core/Src/stm32u0xx_hal_msp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Src/stm32u0xx_hal_msp.c b/Core/Src/stm32u0xx_hal_msp.c
index 4eb7deb..204294d 100644
--- a/Core/Src/stm32u0xx_hal_msp.c
+++ b/Core/Src/stm32u0xx_hal_msp.c
@@ -120,7 +120,7 @@ void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi)
hdma_spi1_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE;
hdma_spi1_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE;
hdma_spi1_rx.Init.Mode = DMA_CIRCULAR;
- hdma_spi1_rx.Init.Priority = DMA_PRIORITY_MEDIUM;
+ hdma_spi1_rx.Init.Priority = DMA_PRIORITY_VERY_HIGH;
if (HAL_DMA_Init(&hdma_spi1_rx) != HAL_OK)
{
Error_Handler();
@@ -137,7 +137,7 @@ void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi)
hdma_spi1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE;
hdma_spi1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE;
hdma_spi1_tx.Init.Mode = DMA_CIRCULAR;
- hdma_spi1_tx.Init.Priority = DMA_PRIORITY_MEDIUM;
+ hdma_spi1_tx.Init.Priority = DMA_PRIORITY_VERY_HIGH;
if (HAL_DMA_Init(&hdma_spi1_tx) != HAL_OK)
{
Error_Handler();