diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-30 21:10:20 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-30 21:10:20 -0500 |
commit | e9f471c4e0a4047bb960b28e4de1447b84a22e4f (patch) | |
tree | 33bec6bf0d1e161b739bcb22f20f668a84aee32d /Core/Src/stm32u0xx_hal_msp.c | |
parent | ea84e2a1a4bdf3f46aa3789ed3f7e96c673d7c2c (diff) |
reduce clocks
Diffstat (limited to 'Core/Src/stm32u0xx_hal_msp.c')
-rw-r--r-- | Core/Src/stm32u0xx_hal_msp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Src/stm32u0xx_hal_msp.c b/Core/Src/stm32u0xx_hal_msp.c index 204294d..4eb7deb 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_VERY_HIGH;
+ hdma_spi1_rx.Init.Priority = DMA_PRIORITY_MEDIUM;
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_VERY_HIGH;
+ hdma_spi1_tx.Init.Priority = DMA_PRIORITY_MEDIUM;
if (HAL_DMA_Init(&hdma_spi1_tx) != HAL_OK)
{
Error_Handler();
|