esp8266: Actually use the decimal part of system_rtc_clock_cali_proc()

modussl
Josef Gajdusek 2015-05-13 15:34:54 +02:00
parent a09757f104
commit 40c6d57804
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ typedef struct _pyb_rtc_obj_t {
#define MEM_USER_MAXLEN (512 - (MEM_USER_DATA_ADDR - MEM_DELTA_ADDR) * 4)
STATIC uint64_t pyb_rtc_raw_us(uint64_t cal) {
return system_get_rtc_time() * ((cal >> 12) * 1000 + (cal & 0x0) / 4) / 1000;
return system_get_rtc_time() * ((cal >> 12) * 1000 + (cal & 0xfff) / 4) / 1000;
};
void pyb_rtc_set_us_since_2000(uint64_t nowus) {