t_sec corrected by one seconds because time is only set ontop of a second

This commit is contained in:
Marius Gripp 2019-05-13 14:30:56 +02:00
parent fdc971be04
commit 646d60e9c5

View File

@ -208,8 +208,10 @@ int recv_timesync_ans(uint8_t seq_no, uint8_t buf[], uint8_t buf_len) {
}
// adjust system time, calibrate RTC and RTC_INT pps
void IRAM_ATTR setMyTime(uint32_t t_sec, uint16_t t_msec,
timesource_t mytimesource) {
void IRAM_ATTR setMyTime(uint32_t t_sec, uint16_t t_msec) {
t_sec ++;
time_t time_to_set = (time_t)(t_sec);
// increment t_sec only if t_msec > 1000
time_t time_to_set = (time_t)(t_sec + t_msec / 1000);