Fixed the wrong indentation

This commit is contained in:
David Lin
2020-03-06 23:10:13 +08:00
committed by GitHub
parent a102c16dc5
commit df17c82e52

View File

@@ -145,11 +145,9 @@ void Uart0DefaultMPF(void)
} }
//systick interrupt Handler function //systick interrupt Handler function
void SysTick_Handler(void) void SysTick_Handler(void)
{ {
if (tos_knl_is_running()) if (tos_knl_is_running())
{ {
tos_knl_irq_enter(); tos_knl_irq_enter();
@@ -157,6 +155,3 @@ void SysTick_Handler(void)
tos_knl_irq_leave(); tos_knl_irq_leave();
} }
} }