OVMS3-idf/components/driver/include/driver
Michael (XIAO Xufeng) 562af8f65e global: move the soc component out of the common list
This MR removes the common dependency from every IDF components to the SOC component.

Currently, in the ``idf_functions.cmake`` script, we include the header path of SOC component by default for all components.
But for better code organization (or maybe also benifits to the compiling speed), we may remove the dependency to SOC components for most components except the driver and kernel related components.

In CMAKE, we have two kinds of header visibilities (set by include path visibility):

(Assume component A --(depends on)--> B, B is the current component)

1. public (``COMPONENT_ADD_INCLUDEDIRS``): means this path is visible to other depending components (A) (visible to A and B)
2. private (``COMPONENT_PRIV_INCLUDEDIRS``): means this path is only visible to source files inside the component (visible to B only)

and we have two kinds of depending ways:

(Assume component A --(depends on)--> B --(depends on)--> C, B is the current component)

1. public (```COMPONENT_REQUIRES```): means B can access to public include path of C. All other components rely on you (A) will also be available for the public headers. (visible to A, B)
2. private (``COMPONENT_PRIV_REQUIRES``): means B can access to public include path of C, but don't propagate this relation to other components (A). (visible to B)

1. remove the common requirement in ``idf_functions.cmake``, this makes the SOC components invisible to all other components by default.
2. if a component (for example, DRIVER) really needs the dependency to SOC, add a private dependency to SOC for it.
3. some other components that don't really depends on the SOC may still meet some errors saying "can't find header soc/...", this is because it's depended component (DRIVER) incorrectly include the header of SOC in its public headers. Moving all this kind of #include into source files, or private headers
4. Fix the include requirements for some file which miss sufficient #include directives. (Previously they include some headers by the long long long header include link)

This is a breaking change. Previous code may depends on the long include chain.
You may need to include the following headers for some files after this commit:

- soc/soc.h
- soc/soc_memory_layout.h
- driver/gpio.h
- esp_sleep.h

The major broken include chain includes:

1. esp_system.h no longer includes esp_sleep.h. The latter includes driver/gpio.h and driver/touch_pad.h.
2. ets_sys.h no longer includes soc/soc.h
3. freertos/portmacro.h no longer includes soc/soc_memory_layout.h

some peripheral headers no longer includes their hw related headers, e.g. rom/gpio.h no longer includes soc/gpio_pins.h and soc/gpio_reg.h

BREAKING CHANGE
2019-04-16 13:21:15 +08:00
..
adc.h driver(adc): add descriptions for the issue that starting ADC can trigger interrupt of GPIO36 and GPIO39. 2018-05-11 17:08:58 +08:00
adc2_wifi_internal.h feat(adc2): append adc2 support and api and the lock with WIFI module 2017-10-26 14:35:29 +08:00
can.h misc adjustment of esp32 component 2019-04-03 19:57:46 +08:00
dac.h feat(rtc): open adc*(dac)_pad_get_io_num functions to public. 2017-10-24 12:06:14 +08:00
gpio.h global: move the soc component out of the common list 2019-04-16 13:21:15 +08:00
i2c.h driver(i2c): enable I2C master hardware filter by default. 2018-11-23 10:27:59 +08:00
i2s.h separate rom from esp32 component to esp_rom 2019-03-21 18:51:45 +08:00
ledc.h bugfix(ledc): fix bugs reported from unit-test and github. 2018-07-10 02:22:23 +08:00
mcpwm.h misc adjustment of esp32 component 2019-04-03 19:57:46 +08:00
pcnt.h misc adjustment of esp32 component 2019-04-03 19:57:46 +08:00
periph_ctrl.h refactor(spi): move pin information into soc folder 2018-06-14 11:29:15 +08:00
rmt.h driver(rmt): Fixed some RMT related issues. 2018-12-18 13:32:39 +08:00
rtc_cntl.h driver/rtc: add support for attaching handlers to RTC_CNTL interrupts 2017-07-10 17:21:49 +08:00
rtc_io.h driver/gpio: support wakeup function for RTC IOs 2018-09-06 15:40:46 +08:00
sdio_slave.h separate rom from esp32 component to esp_rom 2019-03-21 18:51:45 +08:00
sdmmc_defs.h sdmmc: support SDIO over SPI 2019-04-12 02:24:28 +08:00
sdmmc_host.h sdmmc: support SDIO over SPI 2019-04-12 02:24:28 +08:00
sdmmc_types.h sdmmc: support SDIO over SPI 2019-04-12 02:24:28 +08:00
sdspi_host.h sdmmc: support SDIO over SPI 2019-04-12 02:24:28 +08:00
sigmadelta.h Updated sigma delta API documenation and example 2017-09-25 21:31:09 +02:00
spi_common.h separate rom from esp32 component to esp_rom 2019-03-21 18:51:45 +08:00
spi_master.h spi_master: refactor and add HAL support 2019-03-28 17:14:50 +08:00
spi_slave.h spi_slave: add valid check for DMA buffers 2018-11-26 03:49:26 +00:00
timer.h docs: fix description of timer_get_alarm_value() 2018-03-19 11:56:57 +08:00
touch_pad.h misc adjustment of esp32 component 2019-04-03 19:57:46 +08:00
uart.h driver(uart):update the comment of uart_set_wakeup_threshold 2018-11-05 13:09:12 +08:00
uart_select.h Allow VFS file descriptors in select() 2018-05-18 08:06:33 +02:00