mirror of
https://github.com/esphome/esphome.git
synced 2025-09-04 04:12:23 +01:00
[i2c] Allow buffers in PSRAM (#8640)
This commit is contained in:
@@ -67,7 +67,7 @@ void IDFI2CBus::setup() {
|
||||
ESP_LOGV(TAG, "i2c_timeout set to %" PRIu32 " ticks (%" PRIu32 " us)", timeout_ * 80, timeout_);
|
||||
}
|
||||
}
|
||||
err = i2c_driver_install(port_, I2C_MODE_MASTER, 0, 0, ESP_INTR_FLAG_IRAM);
|
||||
err = i2c_driver_install(port_, I2C_MODE_MASTER, 0, 0, 0);
|
||||
if (err != ESP_OK) {
|
||||
ESP_LOGW(TAG, "i2c_driver_install failed: %s", esp_err_to_name(err));
|
||||
this->mark_failed();
|
||||
|
Reference in New Issue
Block a user