Преглед изворни кода

Merge pull request #2812 from lymzzyh/stm32simulator

[bsp][stm32] fix mdk simulator
Bernard Xiong пре 5 година
родитељ
комит
ef6a4aee91
1 измењених фајлова са 5 додато и 0 уклоњено
  1. 5 0
      bsp/stm32/libraries/HAL_Drivers/drv_common.c

+ 5 - 0
bsp/stm32/libraries/HAL_Drivers/drv_common.c

@@ -125,8 +125,13 @@ RT_WEAK void rt_hw_board_init()
     /* HAL_Init() function is called at the beginning of the program */
     HAL_Init();
 
+    /* enable interrupt */
+    __set_PRIMASK(0);
     /* System clock initialization */
     SystemClock_Config();
+    /* disbale interrupt */
+    __set_PRIMASK(1);
+
     rt_hw_systick_init();
 
     /* Heap initialization */