-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'docs/show_include_path' into 'master'
docs: show include path and require component as part of API header Closes IDF-3134, DOC-1032, and DOC-3629 See merge request espressif/esp-idf!25092
- Loading branch information
Showing
17 changed files
with
179 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Header files that will be ignored when generating extra header information | ||
# For API reference (include path/REQUIRE component) | ||
# ULP header files for the ULP app do not have an IDF header path/component require | ||
components/ulp/lp_core/lp_core/include/ulp_lp_core_gpio.h | ||
components/ulp/lp_core/lp_core/include/ulp_lp_core_i2c.h | ||
components/ulp/lp_core/lp_core/include/ulp_lp_core_utils.h | ||
# ESSL headers do not belong to any IDF component, in a user project it will come from a managed component | ||
components/driver/test_apps/components/esp_serial_slave_link/include/esp_serial_slave_link/essl_sdio.h | ||
components/driver/test_apps/components/esp_serial_slave_link/include/esp_serial_slave_link/essl_spi.h | ||
components/driver/test_apps/components/esp_serial_slave_link/include/esp_serial_slave_link/essl.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
INPUT += \ | ||
$(PROJECT_PATH)/components/bt/include/$(IDF_TARGET)/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/bt/include/esp32c2/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_init.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_cert_test.h \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
INPUT += \ | ||
$(PROJECT_PATH)/components/bt/include/$(IDF_TARGET)/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/bt/include/esp32c3/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_init.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_cert_test.h \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
INPUT += \ | ||
$(PROJECT_PATH)/components/bt/include/$(IDF_TARGET)/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/ulp/lp_core/include/lp_core_i2c.h \ | ||
$(PROJECT_PATH)/components/ulp/lp_core/include/ulp_lp_core.h \ | ||
$(PROJECT_PATH)/components/ulp/lp_core/lp_core/include/ulp_lp_core_gpio.h \ | ||
$(PROJECT_PATH)/components/ulp/lp_core/lp_core/include/ulp_lp_core_i2c.h \ | ||
$(PROJECT_PATH)/components/ulp/lp_core/lp_core/include/ulp_lp_core_utils.h \ | ||
$(PROJECT_PATH)/components/bt/include/esp32c6/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_init.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_cert_test.h \ | ||
$(PROJECT_PATH)/components/ulp/ulp_common/include/ulp_common.h \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
INPUT += \ | ||
$(PROJECT_PATH)/components/bt/include/$(IDF_TARGET)/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/bt/include/esp32h2/include/esp_bt.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_init.h \ | ||
$(PROJECT_PATH)/components/esp_phy/include/esp_phy_cert_test.h \ |
Oops, something went wrong.