Home
last modified time | relevance | path

Searched refs:project (Results 1 – 25 of 801) sorted by relevance

12345678910>>...33

/hal_espressif-2.7.6/tools/ci/python_packages/
Dgitlab_api.py31 self.project = self.gitlab_inst.projects.get(project_id)
33 self.project = None
45 for project in projects:
48 res.append(project.id)
51 if project.namespace['path'] == namespace:
52 if project.name == name:
53 res.insert(0, project.id)
55 res.append(project.id)
68 job = self.project.jobs.get(job_id)
110 job = self.project.jobs.get(job_id)
[all …]
/hal_espressif-2.7.6/examples/system/unit_test/
DREADME.md18 unit_test — Application project directory
19 - components — Components of the application project
21 + main - Main source files of the application project
22 + test — Test project directory
23 Makefile / CMakeLists.txt - Makefiles of the application project
26project which has custom components in its `components/` directory. In this case this is the compo…
28 …, and when running the unit tests. Top level project is the actual application being developed. Te…
36 - components - Components of the application project
46 …application project is compiled, tests are not included. Test project includes the tests by settin…
54 ### Configure the project
[all …]
DCMakeLists.txt1 # This is the project CMakeLists.txt file for the test subproject
4 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
5 project(unit_test)
/hal_espressif-2.7.6/examples/get-started/sample_project/
DREADME.md5 This is the simplest buildable example. The example is used by command `idf.py create-project`
6project to user specified path and set it's name. For more information follow the [docs page](http…
12 …://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html#start-a-new-project).
16 The project **sample_project** contains one source file in C language [main.c](main/main.c). The fi…
18 ESP-IDF projects are built using CMake. The project build configuration is contained in `CMakeLists…
19 files that provide set of directives and instructions describing the project's source files and tar…
22 Below is short explanation of remaining files in the project folder.
31 Additionally, the sample project contains Makefile and component.mk files, used for the legacy Make…
/hal_espressif-2.7.6/docs/en/api-guides/tools/
Didf-docker-image.rst44 Building a project with CMake
47 In the project directory, run::
49 docker run --rm -v $PWD:/project -w /project espressif/idf idf.py build
56 - ``-v $PWD:/project``: mounts the current directory on the host (``$PWD``) as ``/project`` directo…
62 docker run --rm -v $PWD:/project -w /project espressif/idf:release-v4.0 idf.py build
67 Building a project with GNU Make
72 docker run --rm -v $PWD:/project -w /project espressif/idf make defconfig all -j4
79project repeatedly, you may bind the ``tools/kconfig`` directory of ESP-IDF to a named volume. Thi…
81 …docker run --rm -v $PWD:/project -v kconfig:/opt/esp/idf/tools/kconfig -w /project espressif/idf m…
92 docker run --rm -v $PWD:/project -w /project -it espressif/idf
/hal_espressif-2.7.6/docs/en/api-guides/
Dbuild-system-legacy.rst9 Read this document if you want to know how to organise an ESP-IDF project using GNU Make build syst…
11 We recommend using the esp-idf-template_ project as a starting point for your project.
16 The esp-idf README file contains a description of how to use the build system to build your project.
21 An ESP-IDF project can be seen as an amalgamation of a number of components. For example, for a web…
31project is compiled, the build environment will look up all the components in the ESP-IDF director…
36 - A "project" is a directory that contains all the files and configuration to build a single "app" …
38project. This configuration file is modified via ``make menuconfig`` to customise the configuratio…
40project will usually build two apps - a "project app" (the main executable, ie your custom firmwar…
44 Some things are not part of the project:
46project. Instead it is standalone, and linked to the project via the ``IDF_PATH`` environment vari…
[all …]
Dbuild-system.rst6 …ead this document if you want to know how to organize and build a new ESP-IDF project or component.
16 An ESP-IDF project can be seen as an amalgamation of a number of components. For example, for a web…
26project is compiled, the build system will look up all the components in the ESP-IDF directories, …
31 - A "project" is a directory that contains all the files and configuration to build a single "app" …
33project. This configuration file is modified via ``idf.py menuconfig`` to customise the configurat…
35project will usually build two apps - a "project app" (the main executable, ie your custom firmwar…
41 Some things are not part of the project:
43project. Instead it is standalone, and linked to the project via the ``IDF_PATH`` environment vari…
45 - The toolchain for compilation is not part of the project. The toolchain should be installed in th…
55 The ``idf.py`` command line tool provides a front-end for easily managing your project builds. It m…
[all …]
/hal_espressif-2.7.6/examples/wifi/
DREADME.md9 See the [README.md](./wpa2_enterprise/README.md) file in the project [wpa2_enterprise](./wpa2_enter…
15 See the [README.md](./power_save/README.md) file in the project [power_save](./power_save/).
21 See the [README.md](./wps/README.md) file in the project [wps](./wps/).
27 See the [README.md](./espnow/README.md) file in the project [espnow](./espnow/).
33 See the [README.md](./fast_scan/README.md) file in the project [fast_scan](./fast_scan/).
39 See the [README.md](./scan/README.md) file in the project [scan](./scan/).
45 See the [README.md](./ftm/README.md) file in the project [ftm](./ftm/).
/hal_espressif-2.7.6/docs/en/get-started-legacy/
Declipse-setup.rst17project from the command line first, to get a feel for how that process works. You also need to u…
31 …. This means you need to start by creating an ESP-IDF project. You can use the idf-template projec…
37project. Don't specify the path to the ESP-IDF directory itself (that comes later). The directory …
45 * The new project will appear under Project Explorer. Right-click the project and choose Properties…
55 **ADDITIONAL NOTE**: If either the IDF_PATH directory or the project directory is located outside `…
67 * Check "Enable project specific settings" to enable the rest of the settings on this page.
75 .. _eclipse-build-project-legacy:
80project is first built, Eclipse may show a lot of errors and warnings about undefined values. This…
84 …a command line prompt. Navigate to your project directory, and run ``make menuconfig`` to configur…
88 * Back in Eclipse, choose Project -> Build to build your project.
[all …]
/hal_espressif-2.7.6/examples/wifi/roaming/
DCMakeLists.txt2 # (Automatically converted from project Makefile by convert_to_cmake.py.)
4 # The following lines of boilerplate have to be in your project's CMakeLists
8 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
9 project(roaming)
/hal_espressif-2.7.6/examples/wifi/wpa2_enterprise/
DCMakeLists.txt2 # (Automatically converted from project Makefile by convert_to_cmake.py.)
4 # The following lines of boilerplate have to be in your project's CMakeLists
8 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
9 project(wpa2-enterprise)
/hal_espressif-2.7.6/components/esp32/
Dcomponent.mk10 LINKER_SCRIPTS += $(COMPONENT_BUILD_DIR)/esp32.project.ld esp32.peripherals.ld
24 COMPONENT_ADD_LINKER_DEPS := $(addprefix ld/, $(filter-out $(COMPONENT_BUILD_DIR)/esp32.project.ld,…
25 $(COMPONENT_BUILD_DIR)/esp32.project.ld
36 COMPONENT_EXTRA_CLEAN := esp32_out.ld $(COMPONENT_BUILD_DIR)/esp32.project.ld
/hal_espressif-2.7.6/components/esp_netif/test_apps/
DCMakeLists.txt1 # This is the project CMakeLists.txt file for the test subproject
6 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
7 project(esp_netif_test)
/hal_espressif-2.7.6/examples/peripherals/rmt/led_strip/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(led_strip)
/hal_espressif-2.7.6/examples/peripherals/rmt/musical_buzzer/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(musical_buzzer)
/hal_espressif-2.7.6/examples/peripherals/sdio/host/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(sdio_host)
/hal_espressif-2.7.6/examples/peripherals/sdio/slave/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(sdio_slave)
/hal_espressif-2.7.6/examples/peripherals/secure_element/atecc608_ecdsa/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(atecc608a_ecdsa)
/hal_espressif-2.7.6/examples/build_system/cmake/import_lib/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(import_lib)
/hal_espressif-2.7.6/examples/build_system/cmake/import_prebuilt/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(import_prebuilt)
/hal_espressif-2.7.6/examples/bluetooth/esp_hid_device/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(esp_hid_device)
/hal_espressif-2.7.6/examples/bluetooth/nimble/blecent/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(blecent)
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/bt_discovery/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(bt_discovery)
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/bt_spp_acceptor/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(bt_spp_acceptor_demo)
/hal_espressif-2.7.6/examples/peripherals/ledc/
DCMakeLists.txt1 # The following lines of boilerplate have to be in your project's CMakeLists
5 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
6 project(ledc)

12345678910>>...33