aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/hal/include/rtc.h2
-rw-r--r--os/hal/src/rtc.c20
2 files changed, 18 insertions, 4 deletions
diff --git a/os/hal/include/rtc.h b/os/hal/include/rtc.h
index 91a3d71e5..8e94bc08f 100644
--- a/os/hal/include/rtc.h
+++ b/os/hal/include/rtc.h
@@ -124,7 +124,7 @@ extern "C" {
#if RTC_SUPPORTS_CALLBACKS
void rtcSetCallback(RTCDriver *rtcp, rtccb_t callback);
#endif
- uint32_t rtcConvertDateTimeToFAT(RTCDateTime *timespec);
+ uint32_t rtcConvertDateTimeToFAT(const RTCDateTime *timespec);
#ifdef __cplusplus
}
#endif
diff --git a/os/hal/src/rtc.c b/os/hal/src/rtc.c
index d3799a011..4b57614a1 100644
--- a/os/hal/src/rtc.c
+++ b/os/hal/src/rtc.c
@@ -193,12 +193,26 @@ void rtcSetCallback(RTCDriver *rtcp, rtccb_t callback) {
*
* @api
*/
-uint32_t rtcConvertDateTimeToFAT(RTCDateTime *timespec) {
+uint32_t rtcConvertDateTimeToFAT(const RTCDateTime *timespec) {
+
+ uint32_t fattime;
+ uint32_t sec, min, hour, tmp;
osalDbgCheck(timespec != NULL);
- /* TODO: Implement.*/
- return 0;
+ tmp = timespec->millisecond / 1000;
+ sec = tmp % 60;
+ min = (tmp - sec) % 3600;
+ hour = (tmp - sec - min * 60) / 3600;
+
+ fattime = sec >> 1;
+ fattime |= min << 5;
+ fattime |= hour << 11;
+ fattime |= timespec->day << 16;
+ fattime |= timespec->month << 21;
+ fattime |= timespec->year << 25;
+
+ return fattime;
}
#endif /* HAL_USE_RTC */