esp-idf/examples/common_components/env_caps
Marius Vikhammer 72b8a3de3e examples: update max GPIO range for C2 examples to exclude UART0 pins
Closes https://github.com/espressif/esp-idf/issues/10174
2022-11-14 10:13:42 +08:00
..
esp32
esp32c2 examples: update max GPIO range for C2 examples to exclude UART0 pins 2022-11-14 10:13:42 +08:00
esp32c3
esp32c6 esp32c6: add minimal ci support 2022-09-26 20:32:13 +08:00
esp32h4 esp32h2: renaming esp32h2 to esp32h4 2022-11-08 17:05:33 +08:00
esp32s2
esp32s3
README.md

README.md

Examples Environmental Capabilities

Examples environmental related capabilities files are describing the attributes which may be considered common among example projects.

It may include but it is not limited to the following:

  • SoC features like maximum/minimum values, available resources, etc. which are not captured in associated soc_caps.h and there is some reason they cannot be added to soc_caps.h. For example, feature definition is not generic enough and is more related to examples use case or it is just some kind of approximation which is good enough for examples but not for SoC drivers.
  • Various system configuration.
  • Espressif's official development boards features.

How to use

  • Update the Environmental Capabilities Kcofig with capabilities you consider could be shared among other example projects.

  • Use orsource statement in your example project Kconfig to include the Environmental Capabilities as shown below.

orsource "$IDF_PATH/examples/common_components/env_caps/$IDF_TARGET/Kconfig.env_caps"