From bcae0e1c0a5b0ce845e536168c47eb7c26de8eb0 Mon Sep 17 00:00:00 2001 From: Chen Chen Date: Fri, 10 Apr 2026 14:12:09 +0800 Subject: [PATCH] docs(i2c): update i2c_master_probe parameter comment closes https://github.com/espressif/esp-idf/issues/18442 --- components/driver/i2c/include/driver/i2c_master.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/driver/i2c/include/driver/i2c_master.h b/components/driver/i2c/include/driver/i2c_master.h index 773a14fe8bb..c510d60de9a 100644 --- a/components/driver/i2c/include/driver/i2c_master.h +++ b/components/driver/i2c/include/driver/i2c_master.h @@ -195,7 +195,7 @@ esp_err_t i2c_master_receive(i2c_master_dev_handle_t i2c_dev, uint8_t *read_buff /** * @brief Probe I2C address, if address is correct and ACK is received, this function will return ESP_OK. * - * @param[in] bus_handle I2C master device handle that created by `i2c_master_bus_add_device`. + * @param[in] bus_handle I2C master bus handle, created by `i2c_new_master_bus`. * @param[in] address I2C device address that you want to probe. * @param[in] xfer_timeout_ms Wait timeout, in ms. Note: -1 means wait forever (Not recommended in this function). *