summaryrefslogtreecommitdiff
path: root/ports/raspberrypi/fatfs_port.c
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2021-03-16 12:21:50 -0500
committerJeff Epler <jepler@gmail.com>2021-03-16 12:21:50 -0500
commit58679dc038e475d7cd00ee45256b7f906ecc2240 (patch)
tree30cbc3f9e7e4efc81a43f364d554f33c1df34169 /ports/raspberrypi/fatfs_port.c
parent97b6664201de2530c9b92957a5e8d2a68524fa7e (diff)
parentbc690d4070c69e21d9070badc9f56a15d62ffb5d (diff)
Merge remote-tracking branch 'origin/main' into bitmap-read-2
Diffstat (limited to 'ports/raspberrypi/fatfs_port.c')
-rw-r--r--ports/raspberrypi/fatfs_port.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/raspberrypi/fatfs_port.c b/ports/raspberrypi/fatfs_port.c
index c65a73a42..e6eee2049 100644
--- a/ports/raspberrypi/fatfs_port.c
+++ b/ports/raspberrypi/fatfs_port.c
@@ -35,14 +35,14 @@
#endif
DWORD get_fattime(void) {
-#if CIRCUITPY_RTC
+ #if CIRCUITPY_RTC
timeutils_struct_time_t tm;
common_hal_rtc_get_time(&tm);
return ((tm.tm_year - 1980) << 25) | (tm.tm_mon << 21) | (tm.tm_mday << 16) |
- (tm.tm_hour << 11) | (tm.tm_min << 5) | (tm.tm_sec >> 1);
-#else
+ (tm.tm_hour << 11) | (tm.tm_min << 5) | (tm.tm_sec >> 1);
+ #else
return ((2016 - 1980) << 25) | ((9) << 21) | ((1) << 16) | ((16) << 11) | ((43) << 5) | (35 / 2);
-#endif
+ #endif
}