t_sec corrected by one seconds because time is only set ontop of a second
This commit is contained in:
parent
fdc971be04
commit
646d60e9c5
@ -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
|
// adjust system time, calibrate RTC and RTC_INT pps
|
||||||
void IRAM_ATTR setMyTime(uint32_t t_sec, uint16_t t_msec,
|
void IRAM_ATTR setMyTime(uint32_t t_sec, uint16_t t_msec) {
|
||||||
timesource_t mytimesource) {
|
|
||||||
|
t_sec ++;
|
||||||
|
time_t time_to_set = (time_t)(t_sec);
|
||||||
|
|
||||||
// increment t_sec only if t_msec > 1000
|
// increment t_sec only if t_msec > 1000
|
||||||
time_t time_to_set = (time_t)(t_sec + t_msec / 1000);
|
time_t time_to_set = (time_t)(t_sec + t_msec / 1000);
|
||||||
|
Loading…
Reference in New Issue
Block a user