fix: remove log from IRAM function

This commit is contained in:
Angel Nunez Mencias 2025-07-23 07:26:03 +02:00
parent 0bdad7f2a3
commit 67c59a2021
No known key found for this signature in database

View file

@ -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) { void IRAM_ATTR timerAlarm(hw_timer_t *timer, uint64_t alarm_value, bool autoreload, uint64_t reload_count) {
if (timer == NULL) { if (timer == NULL) {
log_e("Timer handle is NULL");
return; return;
} }
esp_err_t err = ESP_OK; esp_err_t err = ESP_OK;