Merge branch 'feature/bringup_i2c_esp32c6' into 'master'

I2C: Add i2c support for ESP32C6

Closes IDF-5326 and IDF-5327

See merge request espressif/esp-idf!20905
This commit is contained in:
C.S.M
2022-11-08 11:56:15 +08:00
24 changed files with 1097 additions and 85 deletions
+7
View File
@@ -101,6 +101,13 @@ void i2c_hal_master_handle_rx_event(i2c_hal_context_t *hal, i2c_intr_event_t *ev
*/
void i2c_hal_init(i2c_hal_context_t *hal, int i2c_port);
/**
* @brief Deinit I2C hal layer
*
* @param hal Context of the HAL
*/
void i2c_hal_deinit(i2c_hal_context_t *hal);
/**
* @brief Start I2C master transaction
*