rusefi-1/firmware/hw_layer/rtc_helper.h

18 lines
366 B
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file rtc_helper.h
* @brief Real Time Clock helper
*
* @date Feb 5, 2014
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
2020-02-18 05:16:19 -08:00
#pragma once
2015-07-10 06:01:56 -07:00
void printDateTime(void);
void setDateTime(const char *strDate);
void initRtc(void);
void date_set_tm(struct tm *);
void date_get_tm(struct tm *);
void dateToString(char *buffer);
2016-08-08 21:03:08 -07:00
bool dateToStringShort(char *lcd_str);