OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BCDtoDEC
(Results
1 - 2
of
2
) sorted by null
/hardware/bsp/intel/peripheral/libupm/src/maxds3231m/
maxds3231m.cxx
62
time.second =
BCDtoDEC
(buffer[0]);
63
time.minute =
BCDtoDEC
(buffer[1]);
64
time.hour =
BCDtoDEC
(buffer[2]);
65
time.day =
BCDtoDEC
(buffer[4]);
66
time.month =
BCDtoDEC
(buffer[5] & 0x1F);
67
time.year = (century == 1) ? 2000 +
BCDtoDEC
(buffer[6]) : 1900 +
BCDtoDEC
(buffer[6]);
68
time.weekDay =
BCDtoDEC
(buffer[3]);
125
MAXDS3231M::
BCDtoDEC
(uint8_t data) {
maxds3231m.h
130
uint8_t
BCDtoDEC
(uint8_t data);
Completed in 50 milliseconds