2010-10-17 19:50:55 +00:00
|
|
|
|
|
|
|
|
|
int cmd_sleep(char param[])
|
|
|
|
|
{
|
|
|
|
|
int delay;
|
|
|
|
|
|
|
|
|
|
if (!strlen(param))
|
2013-02-17 15:22:51 +00:00
|
|
|
|
{
|
|
|
|
|
#if LANG_ENG
|
|
|
|
|
printf(" sleep <time in the 1/100 of second>\n\r");
|
|
|
|
|
#elif LANG_RUS
|
2013-10-13 11:00:08 +00:00
|
|
|
|
printf(" sleep <<3C><><EFBFBD><EFBFBD>ࢠ<EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>x ᥪ㭤<E1A5AA>>\n\r");
|
2013-02-17 15:22:51 +00:00
|
|
|
|
#endif
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2010-10-17 19:50:55 +00:00
|
|
|
|
|
|
|
|
|
delay = _atoi(param);
|
|
|
|
|
kol_sleep((unsigned)delay);
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2013-02-17 15:22:51 +00:00
|
|
|
|
|