From 40012f6648336a0ba95cc68c312830eebd0eaaad Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Wed, 28 Oct 2020 18:38:51 +0800 Subject: [PATCH] docs: change some header path to use IDF_TARGET Some header path were using hardcoded esp32 paths, when they should be target dependent. --- docs/Doxyfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/Doxyfile b/docs/Doxyfile index 7345aa0c12..a810fad210 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -13,7 +13,7 @@ # http://doxygen.nl/manual/config.html -PROJECT_NAME = "ESP32 Programming Guide" +PROJECT_NAME = "IDF Programming Guide" ## The 'INPUT' statement below is used as input by script 'gen-df-input.py' ## to automatically generate API reference list files heder_file.inc @@ -138,11 +138,11 @@ INPUT = \ $(IDF_PATH)/components/hal/include/hal/adc_types.h \ $(IDF_PATH)/components/hal/include/hal/twai_types.h \ $(IDF_PATH)/components/hal/include/hal/touch_sensor_types.h \ - $(IDF_PATH)/components/soc/esp32/include/soc/adc_channel.h \ - $(IDF_PATH)/components/soc/esp32/include/soc/dac_channel.h \ - $(IDF_PATH)/components/soc/esp32/include/soc/touch_sensor_channel.h \ - $(IDF_PATH)/components/soc/esp32/include/soc/uart_channel.h \ - $(IDF_PATH)/components/soc/esp32/include/soc/rtc_io_channel.h \ + $(IDF_PATH)/components/soc/$(IDF_TARGET)/include/soc/adc_channel.h \ + $(IDF_PATH)/components/soc/$(IDF_TARGET)/include/soc/dac_channel.h \ + $(IDF_PATH)/components/soc/$(IDF_TARGET)/include/soc/touch_sensor_channel.h \ + $(IDF_PATH)/components/soc/$(IDF_TARGET)/include/soc/uart_channel.h \ + $(IDF_PATH)/components/soc/$(IDF_TARGET)/include/soc/rtc_io_channel.h \ ## esp_netif - API Reference $(IDF_PATH)/components/esp_netif/include/esp_netif.h \ $(IDF_PATH)/components/esp_netif/include/esp_netif_net_stack.h \