mirror of https://github.com/ARMmbed/mbed-os.git
rtos cortex: fix astyle
parent
f90f1fc01d
commit
e80f2ff18a
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue