View Issue Details

IDProjectCategoryView StatusLast Update
0000352EBoot_PM4EBootpublic2010-06-18 09:58
Reporterfroelich Assigned To 
PrioritynormalSeverityminorReproducibilityhave not tried
Status newResolutionopen 
Product VersionV1.47 
Target Versionunspecified 
Summary0000352: 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.