Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cores/esp32/esp32-hal-i2c-ng.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@ esp_err_t i2cInit(uint8_t i2c_num, int8_t sda, int8_t scl, uint32_t frequency) {
}
}

// Silence messages coming from the IDF driver
esp_log_level_set("i2c.master", ESP_LOG_NONE);

init_fail:
#if !CONFIG_DISABLE_HAL_LOCKS
//release lock
Expand Down
Loading