View Issue Details

IDProjectCategoryView StatusLast Update
0000363EBoot_PM3EBootpublic2010-06-28 10:54
Reporterfroelich Assigned To 
PrioritynormalSeverityminorReproducibilityhave not tried
Status resolvedResolutionfixed 
Product VersionV1.43 
Target VersionV1.44Fixed in VersionV1.44 
Summary0000363: OEMGetRealTime() in ether.c reports wrong values for wDay amd wDayOfWeek
DescriptionWrong:
lpst->wDay = FROM_BCD(pRTCRegs->BCDDAY & 0x3f);
lpst->wDayOfWeek = (pRTCRegs->BCDDATE - 1);
Good:
lpst->wDay = FROM_BCD(pRTCRegs->BCDDATE & 0x3f);
lpst->wDayOfWeek = (pRTCRegs->BCDDAY - 1);

Forum Link

Activities

There are no notes attached to this issue.