Home
last modified time | relevance | path

Searched refs:dependencies (Results 1 – 25 of 66) sorted by relevance

123

/hal_espressif-3.5.0/docs/en/api-guides/tools/
Didf-component-manager.rst5 The IDF Component manager is a tool that downloads dependencies for any ESP-IDF CMake project. The …
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
55 # # For transient dependencies `public` flag can be set.
[all …]
/hal_espressif-3.5.0/examples/build_system/cmake/component_manager/
DREADME.md1 # 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/components/mdns/
DCMakeLists.txt9 set(dependencies esp_system_protocols_linux) variable
12 set(dependencies lwip console esp_netif) variable
21 REQUIRES ${dependencies}
/hal_espressif-3.5.0/tools/kconfig/
Dkconfig-language.txt20 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 …]
/hal_espressif-3.5.0/tools/
Didf.py205 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,
591 for dep in task.dependencies:
/hal_espressif-3.5.0/tools/cmake/
Dbuild.cmake131 # 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/tools/mocks/esp_timer/
DCMakeLists.txt2 # On Espressif chips, too many dependencies are missing at the moment.
/hal_espressif-3.5.0/examples/build_system/cmake/import_prebuilt/main/
DCMakeLists.txt5 # The private dependencies of the library is also specified.
/hal_espressif-3.5.0/tools/mocks/freertos/
DCMakeLists.txt2 # On Espressif chips, too many dependencies are missing at the moment.
/hal_espressif-3.5.0/components/esp_hw_support/
DREADME.md7 …omponent for (yet) may also be placed here as long as they don't pull dependencies other than the …
/hal_espressif-3.5.0/tools/kconfig_new/
Dgen_kconfig_doc.py112 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))
/hal_espressif-3.5.0/tools/mocks/spi_flash/
DCMakeLists.txt2 # On Espressif chips, too many dependencies are missing at the moment.
/hal_espressif-3.5.0/components/partition_table/
Dproject_include.cmake66 # - 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/tools/mocks/driver/
DCMakeLists.txt2 # On Espressif chips, too many dependencies are missing at the moment.
/hal_espressif-3.5.0/components/esp-tls/
DCMakeLists.txt29 # due to cyclic dependencies present in IDF for lwip/esp_netif/mbedtls
/hal_espressif-3.5.0/docs/en/api-guides/
Dlinux-host-testing.rst23 …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.
Dbuild-system.rst318dependencies, 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:
661 CMake will usually handle circular dependencies automatically by repeating the component library na…
663dependencies 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…
681 If only one or two symbols is causing a circular dependency, and all other dependencies are linear,…
[all …]
/hal_espressif-3.5.0/tools/mocks/
DREADME.md5 …other mocking components to satisfy a minimal set of definitions from dependencies. *They are not …
/hal_espressif-3.5.0/components/nvs_flash/
DCMakeLists.txt23 …sn't configured for building with linux or as mock target. It will draw in all kind of dependencies
/hal_espressif-3.5.0/examples/build_system/cmake/import_prebuilt/
DREADME.md17 It also demonstrates how to specify the same dependencies the original component had so as to prope…
/hal_espressif-3.5.0/
D.gitignore96 dependencies.lock
/hal_espressif-3.5.0/tools/esp_prov/
DREADME.md88 * BLE communication is only supported on Linux (via Bluez and DBus), therefore, the dependencies fo…
92 These dependencies are for enabling communication with BLE devices using Bluez and DBus on Linux:
/hal_espressif-3.5.0/components/protocomm/python/
Dsession_pb2.py28 dependencies=[sec0__pb2.DESCRIPTOR,sec1__pb2.DESCRIPTOR,])
/hal_espressif-3.5.0/docs/en/get-started/
Dwindows-setup.rst42 …lable releases of ESP-IDF. The installer will download only necessary dependencies including `Git …
44 …t require any network connection. The installer contains all required dependencies including `Git …
/hal_espressif-3.5.0/examples/build_system/cmake/linux_host_app/
DREADME.md15 …`set(COMPONENTS main)`, which clears the common requirements (default dependencies usually include…

123