2010-10-17 21:50:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int cmd_date(char param[])
|
|
|
|
|
{
|
|
|
|
|
unsigned date;
|
|
|
|
|
unsigned time;
|
|
|
|
|
|
|
|
|
|
date = kol_system_date_get();
|
2010-10-21 01:58:36 +02:00
|
|
|
|
#if LANG_ENG
|
|
|
|
|
printf(" Date [dd.mm.yy]: %x%x.%x%x.%x%x",
|
|
|
|
|
#elif LANG_RUS
|
|
|
|
|
printf(" <20><><EFBFBD><EFBFBD> [<5B><>.<2E><>.<2E><>]: %x%x.%x%x.%x%x",
|
|
|
|
|
#endif
|
2010-10-17 21:50:55 +02:00
|
|
|
|
(date&0xf00000)>>20, (date&0xf0000)>>16, // day
|
|
|
|
|
(date&0xf000)>>12, (date&0xf00)>>8, //month
|
|
|
|
|
(date&0xf0)>>4, (date&0xf) ); // year
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
time = kol_system_time_get();
|
|
|
|
|
|
2010-10-21 01:58:36 +02:00
|
|
|
|
#if LANG_ENG
|
|
|
|
|
printf("\n\r Time [hh:mm:ss]: %x%x:%x%x:%x%x\n\r",
|
|
|
|
|
#elif LANG_RUS
|
|
|
|
|
printf("\n\r <20>६<EFBFBD> [<5B><>:<3A><>:<3A><>]: %x%x:%x%x:%x%x\n\r",
|
|
|
|
|
#endif
|
2010-10-17 21:50:55 +02:00
|
|
|
|
(time&0xf0)>>4, (time&0xf), // hours
|
|
|
|
|
(time&0xf000)>>12, (time&0xf00)>>8, // minutes
|
|
|
|
|
(time&0xf00000)>>20, (time&0xf0000)>>16 ); // seconds
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2013-02-17 16:22:51 +01:00
|
|
|
|
|