/hal_espressif-3.5.0/docs/en/api-guides/tools/ |
D | idf-component-manager.rst | 5 The IDF Component manager is a tool that downloads dependencies for any ESP-IDF CMake project. The … 19 Dependencies for each component in the project are defined in a separate manifest file named ``idf_… 23 It's not necessary to have a manifest for components that don't need any managed dependencies. 27 …df_component.yml`` manifests for every component in the project and recursively solves dependencies 28 - Creates a ``dependencies.lock`` file in the root of the project with a full list of dependencies 29 - Downloads all dependencies to the ``managed_components`` directory 31 The lock-file ``dependencies.lock`` and content of ``managed_components`` directory is not supposed… 33 Defining dependencies in the manifest 38 dependencies: 45 # # Other ways to define dependencies [all …]
|
/hal_espressif-3.5.0/tools/kconfig/ |
D | kconfig-language.txt | 20 Every entry has its own dependencies. These dependencies are used 40 the config option, input prompt, dependencies, help text and default 64 to the user. Optionally dependencies only for this prompt can be added 77 Optionally, dependencies only for this default value can be added with 83 Optionally dependencies for this default value can be added with "if". 85 - dependencies: "depends on" <expr> 87 dependencies are defined, they are connected with '&&'. Dependencies 98 - reverse dependencies: "select" <symbol> ["if" <expr>] 99 While normal dependencies reduce the upper limit of a symbol (see 100 below), reverse dependencies can be used to force a lower limit of [all …]
|
D | streamline_config.pl | 271 # Makefiles can use variables to define their dependencies 463 # dependencies met. 540 # loop through all configs, select their dependencies. 559 # This config has dependencies. Make sure they are also included 585 # Get the first set of configs and their dependencies.
|
/hal_espressif-3.5.0/examples/build_system/cmake/component_manager/ |
D | README.md | 1 # Using the component manager for downloading dependencies 3 …ger](https://pypi.org/project/idf-component-manager/) for downloading dependencies from [the compo… 12 …ll process data from the manifest file `./main/idf_component.yml` where 2 dependencies are defined: 20 Solving dependencies requirements 21 Updating lock file at /home/user/esp-idf/examples/build_system/cmake/component_manager/dependencies… 22 Processing 2 dependencies:
|
/hal_espressif-3.5.0/examples/build_system/cmake/component_manager/main/ |
D | idf_component.yml | 1 dependencies: 9 # # Other ways to define dependencies 19 # # For transient dependencies `public` flag can be set. 21 # # All dependencies of `main` are public by default.
|
/hal_espressif-3.5.0/components/mdns/ |
D | CMakeLists.txt | 9 set(dependencies esp_system_protocols_linux) variable 12 set(dependencies lwip console esp_netif) variable 21 REQUIRES ${dependencies}
|
/hal_espressif-3.5.0/.gitlab/ci/ |
D | docs.yml | 64 dependencies: [] 99 # in dependencies.yml to simplify things 162 dependencies: [] 178 dependencies: 199 dependencies: # set dependencies to null to avoid missing artifacts issue
|
D | build.yml | 13 dependencies: [] 94 dependencies: # set dependencies to null to avoid missing artifacts issue 154 dependencies: # set dependencies to null to avoid missing artifacts issue
|
D | deploy.yml | 13 dependencies: [] 66 dependencies: []
|
/hal_espressif-3.5.0/tools/ |
D | idf.py | 12 # WARNING: we don't check for Python build-time dependencies until 92 # check Python dependencies 93 checks_output.append('Checking Python dependencies...') 205 def __init__(self, callback, name, aliases, dependencies, order_dependencies, action_args): argument 208 self.dependencies = dependencies 225 dependencies=None, argument 243 if dependencies is None: 244 dependencies = [] 271 dependencies=dependencies, 582 # Build full list of tasks to and deal with dependencies and order dependencies [all …]
|
/hal_espressif-3.5.0/ |
D | .pre-commit-config.yaml | 85 name: Check rules are generated (based on .gitlab/ci/dependencies/dependencies.yml) 86 entry: .gitlab/ci/dependencies/generate_rules.py 88 files: '\.gitlab/ci/dependencies/.+|\.gitlab/ci/rules\.yml'
|
/hal_espressif-3.5.0/tools/esp_prov/ |
D | README.md | 77 ## Dependencies section in AVAILABILITY 88 * BLE communication is only supported on Linux (via Bluez and DBus), therefore, the dependencies fo… 90 ## Optional Dependencies (Linux Only) 92 These dependencies are for enabling communication with BLE devices using Bluez and DBus on Linux:
|
/hal_espressif-3.5.0/examples/peripherals/i2s/i2s_es8311/main/ |
D | idf_component.yml | 5 dependencies: 10 # # Put list of dependencies here
|
/hal_espressif-3.5.0/tools/idf_py_actions/ |
D | uf2_ext.py | 14 'dependencies': ['all'], 19 'dependencies': ['all'],
|
D | dfu_ext.py | 33 'dependencies': ['all'], 46 'dependencies': [],
|
/hal_espressif-3.5.0/tools/cmake/ |
D | build.cmake | 131 # Create the build target, to which the ESP-IDF build properties, dependencies are attached to. 212 # Since there are circular dependencies, make sure that we do not infinitely 281 message(STATUS "Checking Python dependencies...") 286 …message(FATAL_ERROR "Some Python dependencies must be installed. Check above message for details.") 423 # Call for component manager to download dependencies for all components 443 # Call for the component manager to prepare remote dependencies 547 # @brief Specify the executable the build system can attach dependencies to (for generating 556 # Propagate link dependencies from component library targets to the executable
|
/hal_espressif-3.5.0/docs/en/api-guides/ |
D | unit-tests.rst | 285 …ms regarding unit testing of embedded systems are the strong hardware dependencies. Running unit t… 289 - Increased difficulty in identifying the root cause due to the large number of dependencies influe… 291 …ponent, (i.e., the component under test), software mocking allows the dependencies of the componen… 297 …- Re-evaluate the design of the code under test and attempt to reduce its dependencies by dividing… 320 …- Dependencies of the mock component (this is necessary e.g. if the headers include files from oth… 343 …inal component in its entirety. As long as the test project's dependencies and dependencies of oth…
|
D | build-system.rst | 318 …dependencies, saving the user from hunting down dependencies and providing a build that works righ… 322 3. Specify the dependencies in the renamed component's CMakeLists.txt file via REQUIRES or PRIV_REQ… 494 When compiling each component, the ESP-IDF build system recursively evaluates its dependencies. Thi… 627 … and ``PRIV_REQUIRES`` parameters (ie all the current component's public and private dependencies). 628 …of those components ``REQUIRES`` lists (ie all public dependencies of this component's dependencie… 654 .. _component-circular-dependencies: 656 Circular Dependencies 661 CMake will usually handle circular dependencies automatically by repeating the component library na… 663 …dependencies has desirable properties of modularity and clean layering and will be more maintainab… 665 …component libraries. This causes CMake to repeat this library and its dependencies more than two t… [all …]
|
D | linux-host-testing.rst | 23 …wtheswitch.org/cmock>`_ framework also solves the problem of hardware dependencies. Through mockin… 35 … creating isolated unit tests of components, while mocking the component's dependencies with CMock.
|
/hal_espressif-3.5.0/tools/kconfig_new/ |
D | gen_kconfig_doc.py | 43 …imply invisibility and neither dependencies on visible options with default disabled state. This d… 112 dependencies = node.item.direct_dep # "depends on" for configs 117 dependencies = node.visibility # "visible if" for menu 132 (visib, source) = invert_first_arg(self._implies_invisibility(dependencies)) 268 # hidden config dependencies which will be written to sdkconfig as enabled ones.
|
/hal_espressif-3.5.0/tools/unit-test-app/ |
D | idf_ext.py | 87 # This target builds the configuration. It does not currently track dependencies, 240 'dependencies': build_all_config_deps, 246 'dependencies': clean_all_config_deps,
|
/hal_espressif-3.5.0/components/partition_table/ |
D | project_include.cmake | 66 # - DEPENDS - dependencies the target should have (i.e. whatever target generates the binary). 100 # - DEPENDS - dependencies the new target should have (i.e. whatever target generates the bootloade…
|
/hal_espressif-3.5.0/components/ |
D | README.md | 13 These components can depend on each other, but as much as possible have no dependencies outside the… 19 `freertos`, `log`, and `heap`. Like the first group, circular dependencies within the group are all…
|
/hal_espressif-3.5.0/examples/peripherals/lcd/lvgl/main/ |
D | idf_component.yml | 1 dependencies:
|
/hal_espressif-3.5.0/examples/peripherals/usb/host/cdc/cdc_acm_bg96/main/ |
D | idf_component.yml | 1 dependencies:
|