ESP32-PaxCounter/src/rtctime.cpp

89 lines
2.3 KiB
C++
Raw Normal View History

2019-01-20 22:38:53 +01:00
#include "rtctime.h"
// Local logging tag
2019-02-27 00:52:27 +01:00
static const char TAG[] = __FILE__;
#ifdef HAS_RTC // we have hardware RTC
RtcDS3231<TwoWire> Rtc(Wire); // RTC hardware i2c interface
// initialize RTC
2019-02-24 13:47:18 +01:00
uint8_t rtc_init(void) {
2019-02-22 22:28:35 +01:00
if (I2C_MUTEX_LOCK()) { // block i2c bus access
Wire.begin(HAS_RTC);
Rtc.Begin();
2019-02-22 22:28:35 +01:00
// configure RTC chip
Rtc.Enable32kHzPin(false);
Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeNone);
if (!Rtc.GetIsRunning()) {
ESP_LOGI(TAG, "RTC not running, starting now");
Rtc.SetIsRunning(true);
}
2019-03-24 00:15:04 +01:00
#if (TIME_SYNC_COMPILEDATE)
2019-03-19 20:56:08 +01:00
// initialize a blank RTC without battery backup with compiled time
RtcDateTime tt = Rtc.GetDateTime();
time_t t = tt.Epoch32Time(); // sec2000 -> epoch
if (!Rtc.IsDateTimeValid() || !timeIsValid(t)) {
ESP_LOGW(TAG, "RTC has no recent time, setting to compiled time");
Rtc.SetDateTime(
RtcDateTime(compiledUTC() - SECS_YR_2000)); // epoch -> sec2000
}
#endif
2019-02-22 22:28:35 +01:00
I2C_MUTEX_UNLOCK(); // release i2c bus access
ESP_LOGI(TAG, "RTC initialized");
return 1; // success
} else {
2019-02-22 22:28:35 +01:00
ESP_LOGE(TAG, "RTC initialization error, I2C bus busy");
return 0; // failure
}
} // rtc_init()
uint8_t set_rtctime(time_t t) { // t is sec epoch time
if (I2C_MUTEX_LOCK()) {
2019-03-19 01:46:20 +01:00
#ifdef RTC_INT // sync rtc 1Hz pulse on top of second
2019-03-19 20:56:08 +01:00
Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeNone); // off
2019-03-19 01:46:20 +01:00
Rtc.SetSquareWavePin(DS3231SquareWavePin_ModeClock); // start
#endif
2019-03-24 16:17:36 +01:00
Rtc.SetDateTime(RtcDateTime(t - SECS_YR_2000)); // epoch -> sec2000
I2C_MUTEX_UNLOCK();
2019-02-21 23:17:01 +01:00
ESP_LOGI(TAG, "RTC time synced");
2019-02-11 23:37:45 +01:00
return 1; // success
2019-02-22 22:28:35 +01:00
} else {
ESP_LOGE(TAG, "RTC set time failure");
return 0; // failure
}
2019-01-20 22:38:53 +01:00
} // set_rtctime()
2019-01-21 16:16:39 +01:00
time_t get_rtctime(void) {
2019-02-22 22:28:35 +01:00
time_t t = 0;
2019-01-26 12:32:17 +01:00
if (I2C_MUTEX_LOCK()) {
2019-02-21 23:17:01 +01:00
if (Rtc.IsDateTimeValid() && Rtc.GetIsRunning()) {
2019-01-28 23:59:52 +01:00
RtcDateTime tt = Rtc.GetDateTime();
2019-02-22 22:28:35 +01:00
t = tt.Epoch32Time(); // sec2000 -> epoch
2019-01-21 16:16:39 +01:00
}
2019-02-22 22:28:35 +01:00
I2C_MUTEX_UNLOCK();
return timeIsValid(t);
} else {
ESP_LOGE(TAG, "RTC get time failure");
return 0; // failure
2019-01-20 22:38:53 +01:00
}
2019-01-21 16:16:39 +01:00
} // get_rtctime()
2019-01-21 16:16:39 +01:00
float get_rtctemp(void) {
2019-01-26 12:32:17 +01:00
if (I2C_MUTEX_LOCK()) {
RtcTemperature temp = Rtc.GetTemperature();
2019-02-22 22:28:35 +01:00
I2C_MUTEX_UNLOCK();
return temp.AsFloatDegC();
2019-02-22 22:28:35 +01:00
}
return 0;
2019-01-28 23:59:52 +01:00
} // get_rtctemp()
#endif // HAS_RTC