移植FreeRTOS

This commit is contained in:
2026-07-23 19:55:06 +08:00
parent d07f065b1c
commit b803acc521
66 changed files with 48667 additions and 18 deletions
+13 -12
View File
@@ -113,6 +113,7 @@ void DebugMon_Handler(void)
}
}
#if !IS_USE_FREERTOS
/*!
\brief this function handles SVC exception
\param[in] none
@@ -139,6 +140,18 @@ void PendSV_Handler(void)
}
}
/*!
\brief this function handles SysTick exception
\param[in] none
\param[out] none
\retval none
*/
void SysTick_Handler(void)
{
delay_decrement();
}
#endif
/*!
\brief this function handles FPU exception
\param[in] none
@@ -150,15 +163,3 @@ void FPU_IRQHandler(void)
while(1) {
}
}
/*!
\brief this function handles SysTick exception
\param[in] none
\param[out] none
\retval none
*/
void SysTick_Handler(void)
{
delay_decrement();
}