diff options
Diffstat (limited to 'os/hal/platforms/STM32')
-rw-r--r-- | os/hal/platforms/STM32/hal_lld.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/os/hal/platforms/STM32/hal_lld.c b/os/hal/platforms/STM32/hal_lld.c index 817147026..a533b205c 100644 --- a/os/hal/platforms/STM32/hal_lld.c +++ b/os/hal/platforms/STM32/hal_lld.c @@ -73,10 +73,6 @@ const STM32GPIOConfig pal_default_config = */
void hal_lld_init(void) {
- /* Note: PRIGROUP 4:0 (4:4).*/
- SCB->AIRCR = (0x05FA << SCB_AIRCR_VECTKEY_Pos) |
- (3 << SCB_AIRCR_PRIGROUP_Pos);
-
/* SysTick initialization using the system clock.*/
SysTick->LOAD = SYSCLK / CH_FREQUENCY - 1;
SysTick->VAL = 0;
|