rtos cortex: fix astyle

pull/8365/head
Martin Kojtal 2018-10-10 15:26:50 -05:00
parent f90f1fc01d
commit e80f2ff18a
4 changed files with 17 additions and 14 deletions

View File

@ -73,17 +73,20 @@ uint32_t OS_Tick_GetCount (void)
} }
// Get OS Tick IRQ number. // Get OS Tick IRQ number.
int32_t OS_Tick_GetIRQn (void) { int32_t OS_Tick_GetIRQn(void)
{
return -1; return -1;
} }
// Get OS Tick overflow status. // Get OS Tick overflow status.
uint32_t OS_Tick_GetOverflow (void) { uint32_t OS_Tick_GetOverflow(void)
{
return 0; return 0;
} }
// Get OS Tick interval. // Get OS Tick interval.
uint32_t OS_Tick_GetInterval (void) { uint32_t OS_Tick_GetInterval(void)
{
return 1000; return 1000;
} }