summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/rtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/rtc.c')
-rw-r--r--firmware/target/hosted/rtc.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/firmware/target/hosted/rtc.c b/firmware/target/hosted/rtc.c
index 8c430f3774..cb11d3ca3c 100644
--- a/firmware/target/hosted/rtc.c
+++ b/firmware/target/hosted/rtc.c
@@ -9,6 +9,7 @@
9 * 9 *
10 * Based upon code (C) 2002 by Björn Stenberg 10 * Based upon code (C) 2002 by Björn Stenberg
11 * Copyright (C) 2011 by Thomas Jarosch 11 * Copyright (C) 2011 by Thomas Jarosch
12 * Copyright (C) 2018 by Marcin Bukat
12 * 13 *
13 * This program is free software; you can redistribute it and/or 14 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License 15 * modify it under the terms of the GNU General Public License
@@ -20,6 +21,7 @@
20 * 21 *
21 ****************************************************************************/ 22 ****************************************************************************/
22#include <time.h> 23#include <time.h>
24#include <sys/time.h>
23 25
24void rtc_init(void) 26void rtc_init(void)
25{ 27{
@@ -35,6 +37,10 @@ int rtc_read_datetime(struct tm *tm)
35 37
36int rtc_write_datetime(const struct tm *tm) 38int rtc_write_datetime(const struct tm *tm)
37{ 39{
38 (void)tm; 40 struct timeval tv;
39 return -1; 41
42 tv.tv_sec = mktime((struct tm *)tm);
43 tv.tv_usec = 0;
44
45 return settimeofday(&tv, NULL);
40} 46}