diff options
author | Damien George <damien.p.george@gmail.com> | 2018-04-27 15:16:45 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-04-27 15:16:45 +1000 |
commit | c0dd9be60635956114ab50aa0386235ca23f05fd (patch) | |
tree | da2221a2a2c8883a9904cf6704486f5e92a36e07 | |
parent | deaa46aa66230071d355c0ffd004ccf0cbefd8b9 (diff) |
stm32/boards/NUCLEO_H743ZI: Use priority 0 for SysTick IRQ.
This follows how all other boards are configured.
-rw-r--r-- | ports/stm32/boards/NUCLEO_H743ZI/stm32h7xx_hal_conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/boards/NUCLEO_H743ZI/stm32h7xx_hal_conf.h b/ports/stm32/boards/NUCLEO_H743ZI/stm32h7xx_hal_conf.h index 19f9563ab..97b141d49 100644 --- a/ports/stm32/boards/NUCLEO_H743ZI/stm32h7xx_hal_conf.h +++ b/ports/stm32/boards/NUCLEO_H743ZI/stm32h7xx_hal_conf.h @@ -166,7 +166,7 @@ * @brief This is the HAL system configuration section */ #define VDD_VALUE ((uint32_t)3300) /*!< Value of VDD in mv */ -#define TICK_INT_PRIORITY ((uint32_t)0x0F) /*!< tick interrupt priority */ +#define TICK_INT_PRIORITY ((uint32_t)0x00) /*!< tick interrupt priority */ #define USE_RTOS 0 #define USE_SD_TRANSCEIVER 0U /*!< use uSD Transceiver */ |