2019-01-19 17:53:21 +01:00
|
|
|
#ifdef HAS_RTC
|
|
|
|
|
2019-01-20 22:38:53 +01:00
|
|
|
#include "rtctime.h"
|
2019-01-19 17:53:21 +01:00
|
|
|
|
|
|
|
// Local logging tag
|
|
|
|
static const char TAG[] = "main";
|
|
|
|
|
|
|
|
RtcDS3231<TwoWire> Rtc(Wire);
|
|
|
|
|
|
|
|
// initialize RTC
|
2019-01-21 16:16:39 +01:00
|
|
|
int rtc_init(void) {
|
2019-01-19 17:53:21 +01:00
|
|
|
|
|
|
|
// return = 0 -> error / return = 1 -> success
|
|
|
|
|
|
|
|
// block i2c bus access
|
2019-01-26 12:32:17 +01:00
|
|
|
if (I2C_MUTEX_LOCK()) {
|
2019-01-19 17:53:21 +01:00
|
|
|
|
|
|
|
Wire.begin(HAS_RTC);
|
|
|
|
Rtc.Begin();
|
|
|
|
|
|
|
|
RtcDateTime compiled = RtcDateTime(__DATE__, __TIME__);
|
|
|
|
|
|
|
|
if (!Rtc.IsDateTimeValid()) {
|
2019-01-20 22:38:53 +01:00
|
|
|
ESP_LOGW(TAG,
|
|
|
|
"RTC has no valid RTC date/time, setting to compilation date");
|
2019-01-19 17:53:21 +01:00
|
|
|
Rtc.SetDateTime(compiled);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Rtc.GetIsRunning()) {
|
|
|
|
ESP_LOGI(TAG, "RTC not running, starting now");
|
|
|
|
Rtc.SetIsRunning(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
RtcDateTime now = Rtc.GetDateTime();
|
|
|
|
|
|
|
|
if (now < compiled) {
|
|
|
|
ESP_LOGI(TAG, "RTC date/time is older than compilation date, updating)");
|
|
|
|
Rtc.SetDateTime(compiled);
|
|
|
|
}
|
|
|
|
|
|
|
|
// configure RTC chip
|
|
|
|
Rtc.Enable32kHzPin(false);
|
|
|
|
Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeNone);
|
2019-01-25 22:49:26 +01:00
|
|
|
|
2019-01-19 17:53:21 +01:00
|
|
|
} else {
|
|
|
|
ESP_LOGE(TAG, "I2c bus busy - RTC initialization error");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2019-01-26 12:32:17 +01:00
|
|
|
I2C_MUTEX_UNLOCK(); // release i2c bus access
|
2019-01-19 17:53:21 +01:00
|
|
|
ESP_LOGI(TAG, "RTC initialized");
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
error:
|
2019-01-26 12:32:17 +01:00
|
|
|
I2C_MUTEX_UNLOCK(); // release i2c bus access
|
2019-01-19 17:53:21 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
} // rtc_init()
|
|
|
|
|
2019-01-21 16:16:39 +01:00
|
|
|
int set_rtctime(uint32_t UTCTime) {
|
2019-01-19 17:53:21 +01:00
|
|
|
// return = 0 -> error / return = 1 -> success
|
|
|
|
// block i2c bus access
|
2019-01-26 12:32:17 +01:00
|
|
|
if (I2C_MUTEX_LOCK()) {
|
2019-01-19 17:53:21 +01:00
|
|
|
Rtc.SetDateTime(RtcDateTime(UTCTime));
|
2019-01-26 12:32:17 +01:00
|
|
|
I2C_MUTEX_UNLOCK(); // release i2c bus access
|
2019-01-19 17:53:21 +01:00
|
|
|
return 1;
|
2019-01-20 22:38:53 +01:00
|
|
|
}
|
2019-01-19 17:53:21 +01:00
|
|
|
return 0;
|
2019-01-20 22:38:53 +01:00
|
|
|
} // set_rtctime()
|
2019-01-19 17:53:21 +01:00
|
|
|
|
2019-01-21 16:16:39 +01:00
|
|
|
int set_rtctime(RtcDateTime t) {
|
2019-01-19 17:53:21 +01:00
|
|
|
// return = 0 -> error / return = 1 -> success
|
|
|
|
// block i2c bus access
|
2019-01-26 12:32:17 +01:00
|
|
|
if (I2C_MUTEX_LOCK()) {
|
2019-01-21 16:16:39 +01:00
|
|
|
Rtc.SetDateTime(t);
|
2019-01-26 12:32:17 +01:00
|
|
|
I2C_MUTEX_UNLOCK(); // release i2c bus access
|
2019-01-19 17:53:21 +01:00
|
|
|
return 1;
|
2019-01-20 22:38:53 +01:00
|
|
|
}
|
2019-01-19 17:53:21 +01:00
|
|
|
return 0;
|
2019-01-20 22:38:53 +01:00
|
|
|
} // set_rtctime()
|
2019-01-19 17:53:21 +01:00
|
|
|
|
2019-01-21 16:16:39 +01:00
|
|
|
time_t get_rtctime(void) {
|
|
|
|
// never call now() in this function, would cause recursion!
|
|
|
|
time_t tt = 0;
|
2019-01-19 17:53:21 +01:00
|
|
|
// block i2c bus access
|
2019-01-26 12:32:17 +01:00
|
|
|
if (I2C_MUTEX_LOCK()) {
|
2019-01-21 16:16:39 +01:00
|
|
|
if (!Rtc.IsDateTimeValid()) {
|
2019-01-19 17:53:21 +01:00
|
|
|
ESP_LOGW(TAG, "RTC lost confidence in the DateTime");
|
2019-01-21 16:16:39 +01:00
|
|
|
} else {
|
|
|
|
RtcDateTime t = Rtc.GetDateTime();
|
|
|
|
tt = t.Epoch32Time();
|
|
|
|
}
|
2019-01-26 12:32:17 +01:00
|
|
|
I2C_MUTEX_UNLOCK(); // release i2c bus access
|
2019-01-21 16:16:39 +01:00
|
|
|
return tt;
|
2019-01-20 22:38:53 +01:00
|
|
|
}
|
2019-01-21 16:16:39 +01:00
|
|
|
return tt;
|
|
|
|
} // get_rtctime()
|
2019-01-19 17:53:21 +01:00
|
|
|
|
2019-01-21 16:16:39 +01:00
|
|
|
void sync_rtctime(void) {
|
2019-01-26 13:44:16 +01:00
|
|
|
if (timeStatus() != timeSet) { // do we need time sync?
|
|
|
|
time_t t = get_rtctime();
|
|
|
|
if (t) { // do we have valid time by RTC?
|
|
|
|
setTime(t);
|
|
|
|
ESP_LOGI(TAG, "RTC has set system time to %02d/%02d/%d %02d:%02d:%02d",
|
|
|
|
month(t), day(t), year(t), hour(t), minute(t), second(t));
|
|
|
|
} else
|
|
|
|
ESP_LOGE(TAG, "RTC has no confident time, not synced");
|
2019-01-20 22:38:53 +01:00
|
|
|
}
|
2019-01-26 13:44:16 +01:00
|
|
|
|
2019-01-21 21:59:00 +01:00
|
|
|
#ifdef TIME_SYNC_INTERVAL_RTC
|
|
|
|
setSyncProvider(&get_rtctime);
|
|
|
|
setSyncInterval(TIME_SYNC_INTERVAL_RTC);
|
2019-01-20 22:38:53 +01:00
|
|
|
#endif
|
2019-01-21 21:59:00 +01:00
|
|
|
|
2019-01-20 22:38:53 +01:00
|
|
|
} // sync_rtctime;
|
|
|
|
|
2019-01-21 16:16:39 +01:00
|
|
|
float get_rtctemp(void) {
|
2019-01-19 17:53:21 +01:00
|
|
|
// block i2c bus access
|
2019-01-26 12:32:17 +01:00
|
|
|
if (I2C_MUTEX_LOCK()) {
|
2019-01-19 17:53:21 +01:00
|
|
|
RtcTemperature temp = Rtc.GetTemperature();
|
2019-01-26 12:32:17 +01:00
|
|
|
I2C_MUTEX_UNLOCK(); // release i2c bus access
|
2019-01-19 17:53:21 +01:00
|
|
|
return temp.AsFloatDegC();
|
|
|
|
} // while
|
|
|
|
return 0;
|
|
|
|
} // get_rtc()
|
|
|
|
|
|
|
|
#endif // HAS_RTC
|