mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
log: Check for ISR context and use proper API to get Tick Count
This commit is contained in:
@ -341,7 +341,9 @@ uint32_t IRAM_ATTR esp_log_timestamp()
|
|||||||
if (base == 0 && xPortGetCoreID() == 0) {
|
if (base == 0 && xPortGetCoreID() == 0) {
|
||||||
base = esp_log_early_timestamp();
|
base = esp_log_early_timestamp();
|
||||||
}
|
}
|
||||||
return base + xTaskGetTickCount() * (1000 / configTICK_RATE_HZ);
|
TickType_t tick_count = xPortInIsrContext() ? xTaskGetTickCountFromISR() : xTaskGetTickCount();
|
||||||
|
return base + tick_count * (1000 / configTICK_RATE_HZ);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user