blob: 69a1a6cdb59264cc9f5b9025cca34759bb240180 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "OS_timer.h"
#include "function_target.h"
static u16 OSi_TimerReserved = 0;
ARM_FUNC void OSi_SetTimerReserved(s32 timerNum)
{
OSi_TimerReserved |= (1 << timerNum);
}
|