mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 04:02:27 +00:00
freertos(esp32s3): SysTick uses systimer
This commit is contained in:

committed by
Zim Kalinowski

parent
b5f9149399
commit
29f581fc70
@@ -133,7 +133,7 @@ esp_err_t esp_timer_impl_init(intr_handler_t alarm_handler)
|
||||
&timer_alarm_isr, NULL, &s_timer_interrupt_handle);
|
||||
|
||||
if (err != ESP_OK) {
|
||||
ESP_EARLY_LOGE(TAG, "esp_intr_alloc failed (%#x)", err);
|
||||
ESP_EARLY_LOGE(TAG, "esp_intr_alloc failed (0x%x)", err);
|
||||
goto err_intr_alloc;
|
||||
}
|
||||
|
||||
@@ -155,7 +155,7 @@ esp_err_t esp_timer_impl_init(intr_handler_t alarm_handler)
|
||||
|
||||
err = esp_intr_enable(s_timer_interrupt_handle);
|
||||
if (err != ESP_OK) {
|
||||
ESP_EARLY_LOGE(TAG, "esp_intr_enable failed (%#x)", err);
|
||||
ESP_EARLY_LOGE(TAG, "esp_intr_enable failed (0x%x)", err);
|
||||
goto err_intr_en;
|
||||
}
|
||||
return ESP_OK;
|
||||
|
Reference in New Issue
Block a user