Skip to content

Commit ec39121

Browse files
committed
x
1 parent 48befd8 commit ec39121

File tree

20 files changed

+40
-47
lines changed

20 files changed

+40
-47
lines changed

bsp/esp-box-3/esp-box-3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static bool spi_sd_initialized = false;
6868
* @brief I2C handle for BSP usage
6969
*
7070
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
71-
* from #include "esp_private/i2c_platform.h" to get this handle
71+
* from include "esp_private/i2c_platform.h" to get this handle
7272
*
7373
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
7474
*/

bsp/esp32_s2_kaluga_kit/API.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -591,12 +591,6 @@ There is no deinit audio function. Users can free audio resources by calling i2s
591591

592592

593593

594-
**Warning:**
595-
596-
The type of i2s\_config param is depending on IDF version.
597-
598-
599-
600594
**Parameters:**
601595

602596

bsp/esp32_s2_kaluga_kit/esp32_s2_kaluga_kit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static const char *TAG = "Kaluga";
2727
* @brief I2C handle for BSP usage
2828
*
2929
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
30-
* from #include "esp_private/i2c_platform.h" to get this handle
30+
* from include "esp_private/i2c_platform.h" to get this handle
3131
*
3232
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
3333
*/

bsp/esp32_s2_kaluga_kit/include/bsp/esp32_s2_kaluga_kit.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ extern "C" {
163163
* @brief Init audio
164164
*
165165
* @note There is no deinit audio function. Users can free audio resources by calling i2s_del_channel()
166-
* @warning The type of i2s_config param is depending on IDF version.
167166
* @param[in] i2s_config I2S configuration. Pass NULL to use default values (Mono, duplex, 16bit, 22050 Hz)
168167
* @return
169168
* - ESP_OK On success

bsp/esp32_s3_eye/esp32_s3_eye.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static const char *TAG = "S3-EYE";
3434
* @brief I2C handle for BSP usage
3535
*
3636
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
37-
* from #include "esp_private/i2c_platform.h" to get this handle
37+
* from include "esp_private/i2c_platform.h" to get this handle
3838
*
3939
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
4040
*/

bsp/esp32_s3_korvo_2/esp32_s3_korvo_2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static const char *TAG = "S3-KORVO-2";
3636
* @brief I2C handle for BSP usage
3737
*
3838
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
39-
* from #include "esp_private/i2c_platform.h" to get this handle
39+
* from include "esp_private/i2c_platform.h" to get this handle
4040
*
4141
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
4242
*/

bsp/esp32_s3_lcd_ev_board/src/esp32_s3_lcd_ev_board.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static const char *TAG = "S3-LCD-EV-BOARD";
5959
* @brief I2C handle for BSP usage
6060
*
6161
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
62-
* from #include "esp_private/i2c_platform.h" to get this handle
62+
* from include "esp_private/i2c_platform.h" to get this handle
6363
*
6464
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
6565
*/

bsp/esp_bsp_devkit/src/esp_bsp_devkit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static const char *TAG = "BSP-devkit";
2323
* @brief I2C handle for BSP usage
2424
*
2525
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
26-
* from #include "esp_private/i2c_platform.h" to get this handle
26+
* from include "esp_private/i2c_platform.h" to get this handle
2727
*
2828
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
2929
*/

bsp/esp_bsp_generic/src/esp_bsp_generic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static esp_lcd_touch_handle_t tp; // LCD touch handle
6161
* @brief I2C handle for BSP usage
6262
*
6363
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
64-
* from #include "esp_private/i2c_platform.h" to get this handle
64+
* from include "esp_private/i2c_platform.h" to get this handle
6565
*
6666
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
6767
*/

bsp/m5_atom_s3/m5_atom_s3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ static lv_display_t *disp;
3232
* @brief I2C handle for BSP usage
3333
*
3434
* In IDF v5.4 you can call i2c_master_get_bus_handle(BSP_I2C_NUM, i2c_master_bus_handle_t *ret_handle)
35-
* from #include "esp_private/i2c_platform.h" to get this handle
35+
* from include "esp_private/i2c_platform.h" to get this handle
3636
*
3737
* For IDF 5.2 and 5.3 you must call bsp_i2c_get_handle()
3838
*/

0 commit comments

Comments
 (0)