Skip to content

Commit 1fa420e

Browse files
committed
Merge branch 'refactor/remove_io_loop_back' into 'master'
refactor(drivers)!: remove unnecessary io_loop_back config option Closes IDF-11274 See merge request espressif/esp-idf!39062
2 parents c6bc55f + f6b8ad8 commit 1fa420e

File tree

58 files changed

+115
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+115
-232
lines changed

components/esp_driver_ana_cmpr/include/driver/ana_cmpr.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ typedef struct {
2929
ana_cmpr_cross_type_t cross_type; /*!< The crossing types that can trigger interrupt */
3030
int intr_priority; /*!< The interrupt priority, range 1~3.
3131
If set to 0, the driver will automatically select a relative low priority (1,2,3) */
32-
struct {
33-
uint32_t io_loop_back: 1; /*!< Deprecated. For debug/test, a signal output from other peripheral can work as comparator input. */
34-
} flags; /*!< Analog comparator driver flags */
3532
} ana_cmpr_config_t;
3633

3734
/**

components/esp_driver_cam/dvp/src/esp_cam_ctlr_dvp_cam.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <sys/lock.h>
88
#include <sys/param.h>
99
#include "esp_memory_utils.h"
10-
#include "hal/gpio_ll.h"
1110
#include "hal/cam_ll.h"
1211
#include "hal/color_hal.h"
1312
#include "driver/gpio.h"

components/esp_driver_cam/isp_dvp/src/esp_cam_ctlr_isp_dvp.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "driver/isp_types.h"
1616
#include "driver/gpio.h"
1717
#include "hal/isp_hal.h"
18-
#include "hal/gpio_hal.h"
1918
#include "hal/isp_ll.h"
2019
#include "hal/mipi_csi_brg_ll.h"
2120
#include "hal/mipi_csi_ll.h"

components/esp_driver_dac/test_apps/dac/main/test_dac.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "esp_private/i2s_platform.h"
2020
// Following headers are used to test the conversion frequency
2121
#include "soc/i2s_periph.h"
22-
#include "hal/gpio_hal.h"
2322
#include "driver/pulse_cnt.h"
2423
#include "soc/pcnt_periph.h"
2524
#elif CONFIG_IDF_TARGET_ESP32S2

components/esp_driver_gpio/include/esp_private/gpio.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
#pragma once
88

99
#include "sdkconfig.h"
10-
#include <esp_types.h>
11-
10+
#include "esp_types.h"
1211
#include "soc/soc_caps.h"
12+
#include "soc/io_mux_reg.h"
1313
#include "driver/gpio.h"
1414

1515
#ifdef __cplusplus

components/esp_driver_i2c/i2c_common.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include "esp_pm.h"
1919
#include "freertos/FreeRTOS.h"
2020
#include "hal/i2c_hal.h"
21-
#include "hal/gpio_hal.h"
2221
#include "esp_private/periph_ctrl.h"
2322
#include "esp_rom_gpio.h"
2423
#include "i2c_private.h"

components/esp_driver_i2c/i2c_master.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
#include "clk_ctrl_os.h"
3131
#include "hal/i2c_types.h"
3232
#include "hal/i2c_hal.h"
33-
#include "hal/gpio_hal.h"
3433
#include "esp_memory_utils.h"
3534
#include "freertos/idf_additions.h"
3635

components/esp_driver_i2c/i2c_slave.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#include "soc/i2c_periph.h"
1818
#include "esp_rom_gpio.h"
1919
#include "driver/gpio.h"
20-
#include "hal/gpio_ll.h"
2120
#include "clk_ctrl_os.h"
2221
#include "esp_private/esp_clk.h"
2322
#include "driver/i2c_slave.h"

components/esp_driver_i2c/i2c_slave_v2.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "esp_attr.h"
1313
#include "esp_rom_gpio.h"
1414
#include "driver/gpio.h"
15-
#include "hal/gpio_ll.h"
1615
#include "esp_err.h"
1716
#include "freertos/FreeRTOS.h"
1817
#include "freertos/semphr.h"

components/esp_driver_i2s/i2s_common.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
#include "soc/i2s_periph.h"
2525
#include "soc/soc_caps.h"
26-
#include "hal/gpio_hal.h"
2726
#include "hal/i2s_hal.h"
2827
#include "hal/hal_utils.h"
2928
#include "hal/dma_types.h"

0 commit comments

Comments
 (0)