2019-12-28 13:34:50 +00:00
|
|
|
#include "DateTimeController.h"
|
2020-01-18 12:56:25 +00:00
|
|
|
#include <date/date.h>
|
|
|
|
#include <libraries/log/nrf_log.h>
|
2021-04-02 15:33:49 +00:00
|
|
|
#include <systemtask/SystemTask.h>
|
2019-12-28 13:34:50 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
DateTime::DateTime(System::SystemTask& systemTask) : systemTask {systemTask} {
|
2021-04-02 15:33:49 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
void DateTime::SetTime(
|
|
|
|
uint16_t year, uint8_t month, uint8_t day, uint8_t dayOfWeek, uint8_t hour, uint8_t minute, uint8_t second, uint32_t systickCounter) {
|
|
|
|
std::tm tm = {
|
|
|
|
/* .tm_sec = */ second,
|
|
|
|
/* .tm_min = */ minute,
|
|
|
|
/* .tm_hour = */ hour,
|
|
|
|
/* .tm_mday = */ day,
|
|
|
|
/* .tm_mon = */ month - 1,
|
|
|
|
/* .tm_year = */ year - 1900,
|
2020-03-02 19:13:30 +00:00
|
|
|
};
|
|
|
|
tm.tm_isdst = -1; // Use DST value from local time zone
|
2021-04-18 17:28:14 +00:00
|
|
|
currentDateTime = std::chrono::system_clock::from_time_t(std::mktime(&tm));
|
2020-01-18 12:56:25 +00:00
|
|
|
|
|
|
|
NRF_LOG_INFO("%d %d %d ", day, month, year);
|
|
|
|
NRF_LOG_INFO("%d %d %d ", hour, minute, second);
|
|
|
|
previousSystickCounter = systickCounter;
|
2020-03-02 19:13:30 +00:00
|
|
|
|
2020-01-18 12:56:25 +00:00
|
|
|
UpdateTime(systickCounter);
|
|
|
|
NRF_LOG_INFO("* %d %d %d ", this->hour, this->minute, this->second);
|
|
|
|
NRF_LOG_INFO("* %d %d %d ", this->day, this->month, this->year);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DateTime::UpdateTime(uint32_t systickCounter) {
|
2020-01-31 19:01:33 +00:00
|
|
|
// Handle systick counter overflow
|
2020-01-18 12:56:25 +00:00
|
|
|
uint32_t systickDelta = 0;
|
2021-04-18 17:28:14 +00:00
|
|
|
if (systickCounter < previousSystickCounter) {
|
2020-01-18 12:56:25 +00:00
|
|
|
systickDelta = 0xffffff - previousSystickCounter;
|
|
|
|
systickDelta += systickCounter + 1;
|
|
|
|
} else {
|
|
|
|
systickDelta = systickCounter - previousSystickCounter;
|
|
|
|
}
|
|
|
|
|
2020-01-31 19:01:33 +00:00
|
|
|
/*
|
2021-04-18 17:28:14 +00:00
|
|
|
* 1000 ms = 1024 ticks
|
|
|
|
*/
|
2020-01-31 19:01:33 +00:00
|
|
|
auto correctedDelta = systickDelta / 1024;
|
2021-04-18 17:28:14 +00:00
|
|
|
auto rest = (systickDelta - (correctedDelta * 1024));
|
|
|
|
if (systickCounter >= rest) {
|
2020-01-31 19:01:33 +00:00
|
|
|
previousSystickCounter = systickCounter - rest;
|
|
|
|
} else {
|
|
|
|
previousSystickCounter = 0xffffff - (rest - systickCounter);
|
|
|
|
}
|
|
|
|
|
2020-06-07 18:04:43 +00:00
|
|
|
currentDateTime += std::chrono::seconds(correctedDelta);
|
|
|
|
uptime += std::chrono::seconds(correctedDelta);
|
2020-01-18 12:56:25 +00:00
|
|
|
|
|
|
|
auto dp = date::floor<date::days>(currentDateTime);
|
2021-04-18 17:28:14 +00:00
|
|
|
auto time = date::make_time(currentDateTime - dp);
|
2020-01-18 12:56:25 +00:00
|
|
|
auto yearMonthDay = date::year_month_day(dp);
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
year = (int) yearMonthDay.year();
|
|
|
|
month = static_cast<Months>((unsigned) yearMonthDay.month());
|
|
|
|
day = (unsigned) yearMonthDay.day();
|
2020-01-18 12:56:25 +00:00
|
|
|
dayOfWeek = static_cast<Days>(date::weekday(yearMonthDay).iso_encoding());
|
|
|
|
|
|
|
|
hour = time.hours().count();
|
|
|
|
minute = time.minutes().count();
|
|
|
|
second = time.seconds().count();
|
2021-04-02 15:33:49 +00:00
|
|
|
|
|
|
|
// Notify new day to SystemTask
|
2021-04-18 17:28:14 +00:00
|
|
|
if (hour == 0 and not isMidnightAlreadyNotified) {
|
2021-04-02 15:33:49 +00:00
|
|
|
isMidnightAlreadyNotified = true;
|
|
|
|
systemTask.PushMessage(System::SystemTask::Messages::OnNewDay);
|
|
|
|
} else if (hour != 0) {
|
|
|
|
isMidnightAlreadyNotified = false;
|
|
|
|
}
|
2019-12-28 13:34:50 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* DateTime::MonthShortToString() {
|
|
|
|
return DateTime::MonthsString[(uint8_t) month];
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* DateTime::MonthShortToStringLow() {
|
|
|
|
return DateTime::MonthsStringLow[(uint8_t) month];
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* DateTime::MonthsToStringLow() {
|
|
|
|
return DateTime::MonthsLow[(uint8_t) month];
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* DateTime::DayOfWeekToString() {
|
|
|
|
return DateTime::DaysString[(uint8_t) dayOfWeek];
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* DateTime::DayOfWeekShortToString() {
|
|
|
|
return DateTime::DaysStringShort[(uint8_t) dayOfWeek];
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* DateTime::DayOfWeekToStringLow() {
|
|
|
|
return DateTime::DaysStringLow[(uint8_t) dayOfWeek];
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
const char* DateTime::DayOfWeekShortToStringLow() {
|
|
|
|
return DateTime::DaysStringShortLow[(uint8_t) dayOfWeek];
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
char const* DateTime::DaysStringLow[] = {"--", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};
|
|
|
|
|
|
|
|
char const* DateTime::DaysStringShortLow[] = {"--", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"};
|
|
|
|
|
|
|
|
char const* DateTime::DaysStringShort[] = {"--", "MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"};
|
|
|
|
|
|
|
|
char const* DateTime::DaysString[] = {"--", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"};
|
|
|
|
|
|
|
|
char const* DateTime::MonthsString[] = {"--", "JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"};
|
|
|
|
|
|
|
|
char const* DateTime::MonthsStringLow[] = {"--", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
|
2021-02-24 19:40:24 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
char const* DateTime::MonthsLow[] = {
|
|
|
|
"--", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
|