mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
components/log: fix timestamp calculation
This commit is contained in:
parent
26bf85bad6
commit
1188bdfc68
@ -300,7 +300,7 @@ uint32_t IRAM_ATTR esp_log_timestamp()
|
||||
if (base == 0) {
|
||||
base = esp_log_early_timestamp();
|
||||
}
|
||||
return base + xTaskGetTickCount() * configTICK_RATE_HZ;
|
||||
return base + xTaskGetTickCount() * (1000 / configTICK_RATE_HZ);
|
||||
}
|
||||
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user