From 67c59a202196abe0029b868c34e57faf4032f0c5 Mon Sep 17 00:00:00 2001 From: Angel Nunez Mencias Date: Wed, 23 Jul 2025 07:26:03 +0200 Subject: [PATCH] fix: remove log from IRAM function --- cores/esp32/esp32-hal-timer.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cores/esp32/esp32-hal-timer.c b/cores/esp32/esp32-hal-timer.c index 508d51050..6875b5b2d 100644 --- a/cores/esp32/esp32-hal-timer.c +++ b/cores/esp32/esp32-hal-timer.c @@ -54,7 +54,6 @@ void IRAM_ATTR timerWrite(hw_timer_t *timer, uint64_t val) { void IRAM_ATTR timerAlarm(hw_timer_t *timer, uint64_t alarm_value, bool autoreload, uint64_t reload_count) { if (timer == NULL) { - log_e("Timer handle is NULL"); return; } esp_err_t err = ESP_OK;