/hal_espressif-2.7.6/examples/system/ulp_riscv/ |
D | README.md | 6 …s how to program the ULP-RISC-V coprocessor to poll a gpio and wakeup the main CPU when it changes… 8 ULP program written in C can be found across `ulp/main.c`. The build system compiles and links this… 10 …main CPU loads ULP program into the `RTC_SLOW_MEM` memory region using `ulp_riscv_load_binary` fun… 12 …an state changing in the pin, it saves the current state and sends a wakeup signal to the main CPU. 14 Upon wakeup, the main program prints the current level of the measured gpio and go back to the deep… 16 … the ESP32-S2 Chip Pin List document and adjust `gpio_num` and `ulp_io_number` variables in main.c. 27 ULP-RISC-V woke up the main CPU!
|
/hal_espressif-2.7.6/examples/system/sysview_tracing_heap_log/ |
D | README.md | 66 [0.002272225] HEAP: Allocated 8 bytes @ 0x3ffaff6c from task "main" on core 0 by: 67 /home/user/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap… 70 [0.002307300] HEAP: Allocated 2500 bytes @ 0x3ffb580c from task "main" on core 0 by: 72 /home/user/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap… 74 [0.002323775] HEAP: Allocated 356 bytes @ 0x3ffb61d4 from task "main" on core 0 by: 76 /home/user/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap… 80 /home/user/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap… 84 /home/user/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap… 88 /home/user/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap… 91 /home/user/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap… [all …]
|
/hal_espressif-2.7.6/tools/test_idf_tools/ |
D | test_idf_tools.py | 72 idf_tools.main(['list']) 85 idf_tools.main(['install']) 96 idf_tools.main(['check']) 104 idf_tools.main(['export']) 116 idf_tools.main(['validate']) 119 idf_tools.main(['rewrite']) 131 unittest.main()
|
/hal_espressif-2.7.6/examples/get-started/sample_project/ |
D | README.md | 16 …ct** contains one source file in C language [main.c](main/main.c). The file is located in folder [… 26 ├── main 28 │ └── main.c
|
/hal_espressif-2.7.6/tools/ci/ |
D | test_build_system.sh | 79 touch ${IDF_PATH}/components/bootloader/subproject/main/bootloader_start.c 81 assert_rebuilt ${BOOTLOADER_BINS} bootloader/main/bootloader_start.o 203 echo "#error This file should not compile" > main/excluded_file.c 204 echo "int required_global;" > main/included_file.c 205 echo "COMPONENT_OBJEXCLUDE := excluded_file.o" >> main/component.mk 206 echo "COMPONENT_OBJINCLUDE := included_file.o" >> main/component.mk 207 echo "COMPONENT_ADD_LDFLAGS := -l\$(COMPONENT_NAME) -u required_global" >> main/component.mk 209 git checkout main/component.mk 210 rm main/{included,excluded}_file.c 216 echo "COMPONENT_SRCDIRS := . ../extra_source_dir" >> main/component.mk [all …]
|
D | test_build_system_cmake.sh | 82 touch ${IDF_PATH}/components/bootloader/subproject/main/bootloader_start.c 84 …assert_rebuilt ${BOOTLOADER_BINS} bootloader/esp-idf/main/CMakeFiles/${IDF_COMPONENT_PREFIX}_main.… 145 … && cat main/CMakeLists.txt) > main/CMakeLists.new && mv main/CMakeLists.new main/CMakeLists.txt 147 git checkout -- main/CMakeLists.txt 295 mv main/Kconfig.projbuild main/Kconfig.projbuild_bak 296 …\$IDF_PATH/examples/wifi/getting_started/station/main/Kconfig.projbuild\"" > main/Kconfig.projbuild 302 mv main/Kconfig.projbuild_bak main/Kconfig.projbuild 434 mkdir -p main/main/main # move main component contents to another directory 435 mv main/* main/main/main 440 mv main/main/main/* main [all …]
|
D | envsubst.py | 10 def main(): function 27 main()
|
D | check_executables.py | 57 def main(): function 76 exit(main())
|
/hal_espressif-2.7.6/examples/build_system/cmake/import_prebuilt/ |
D | README.md | 14 …th the header file `prebuilt.h`, is automatically copied to the [`main` component](main) of this e… 16 The [`main` component's CMakeLists.txt](main/CMakeLists.txt) demonstrates how to import `libprebuil… 19 Users can then return to this directory and build the main example:
|
/hal_espressif-2.7.6/examples/system/ulp/ |
D | README.md | 6 …tes how to program the ULP coprocessor to count pulses on an IO while the main CPUs are either run… 10 …main code running on the ESP32 (found in main.c) loads ULP program into the `RTC_SLOW_MEM` memory … 12 …e total edge count. Once the edge count reaches certain value (set by the main program), ULP trigg… 14 Upon wakeup, the main program saves total edge count into NVS and returns to deep sleep. 16 …eck the ESP32 Chip Pin List document and adjust `gpio_num` and `ulp_io_number` variables in main.c. 51 …e_up` variable is set to 10 by the main program. This shows that the ULP program keeps track of pu…
|
/hal_espressif-2.7.6/examples/build_system/cmake/import_prebuilt/main/ |
D | CMakeLists.txt | 1 idf_component_register(SRCS "main.c" 9 # `main` calls a function from the library, so link it to `main`
|
/hal_espressif-2.7.6/examples/build_system/cmake/import_prebuilt/prebuilt/components/prebuilt/ |
D | CMakeLists.txt | 5 # After build, copy the archive file and header file to parent example directory's main component 8 … COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:${COMPONENT_LIB}> ${CMAKE_SOURCE_DIR}/../main 9 … COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_LIST_DIR}/prebuilt.h ${CMAKE_SOURCE_DIR}/../main
|
/hal_espressif-2.7.6/examples/protocols/mqtt/ssl_mutual_auth/ |
D | CMakeLists.txt | 12 target_add_binary_data(${CMAKE_PROJECT_NAME}.elf "main/client.crt" TEXT) 13 target_add_binary_data(${CMAKE_PROJECT_NAME}.elf "main/client.key" TEXT) 14 target_add_binary_data(${CMAKE_PROJECT_NAME}.elf "main/mosquitto.org.crt" TEXT)
|
/hal_espressif-2.7.6/tools/test_apps/build_system/ldgen_test/ |
D | README.txt | 3 tests the placement for the main component, as specified in `main/linker.lf`
|
/hal_espressif-2.7.6/examples/build_system/cmake/import_lib/ |
D | README.md | 8 …out modification, for use in the project's `main` component (see the `main` component's [CMakeList…
|
/hal_espressif-2.7.6/docs/zh_CN/api-guides/jtag-debugging/ |
D | debugging-examples.rst | 232 Temporary breakpoint 1, app_main () at /home/user-name/esp/blink/main/./blink.c:43 275 #0 app_main () at /home/user-name/esp/blink/main/./blink.c:43 340 …* 1 Thread 1073411772 (main : Running) app_main () at /home/user-name/esp/blink/main/./blink.c:… 381 Breakpoint 2 at 0x400db6f6: file /home/user-name/esp/blink/main/./blink.c, line 33. 383 Breakpoint 3 at 0x400db704: file /home/user-name/esp/blink/main/./blink.c, line 36. 391 Breakpoint 2, blink_task (pvParameter=0x0) at /home/user-name/esp/blink/main/./blink.c:33 398 Breakpoint 3, blink_task (pvParameter=0x0) at /home/user-name/esp/blink/main/./blink.c:36 408 …2 breakpoint keep y 0x400db6f6 in blink_task at /home/user-name/esp/blink/main/./blink… 410 …3 breakpoint keep y 0x400db704 in blink_task at /home/user-name/esp/blink/main/./blink… 464 …3 breakpoint keep y 0x400db704 in blink_task at /home/user-name/esp/blink/main/./blink… [all …]
|
/hal_espressif-2.7.6/docs/zh_CN/api-reference/network/ |
D | tcpip_adapter_migration.rst | 35 - Wi-Fi Station: :example_file:`wifi/getting_started/station/main/station_example_main.c` 36 - Wi-Fi AP: :example_file:`wifi/getting_started/softAP/main/softap_example_main.c` 37 - 以太网: :example_file:`ethernet/basic/main/ethernet_example_main.c`
|
/hal_espressif-2.7.6/docs/zh_CN/api-guides/ |
D | startup.rst | 112 全局构造函数。一旦所有必要的组件都初始化好,就会创建 *main 119 .. _app-main-task: 121 Running the main task
|
D | build-system.rst | 248 - main/ - CMakeLists.txt 260 …ENT_DIRS`` 变量以查找其他指定位置处的组件。有关详细信息,请参阅 :ref:`重命名 main 组件 <rename-main>`。如果项目中源文件较多,建议将其归于组件中,而不是全部放… 262 - "main" 目录是一个特殊的组件,它包含项目本身的源代码。"main" 是默认名称,CMake 变量 ``COMPONENT_DIRS`` 默认包含此组件,但您可以修改此变量。 314 .. _rename-main: 316 重命名 ``main`` 组件 319 …main`` 组件进行特殊处理。假如 ``main`` 组件位于预期的位置(即 `${PROJECT_PATH}/main`),那么它会被自动添加到构建系统中。其他组件也会作为其依赖项被添加到构建… 321 1. 重命名 ``main`` 目录。 322 2. 在项目 CMakeLists.txt 文件中设置 ``EXTRA_COMPONENT_DIRS``,并添加重命名后的 ``main`` 目录。 364 - ``INCLUDE_DIRS`` 是目录列表,里面的路径会被添加到所有需要该组件的组件(包括 main 组件)全局 include 搜索路径中。 614 ``main`` 组件比较特别,因为它在构建过程中自动依赖所有其他组件。所以不需要向这个组件传递 ``REQUIRES`` 或 ``PRIV_REQUIRES``。有关不再使用 ``main`` 组… [all …]
|
/hal_espressif-2.7.6/docs/zh_CN/api-guides/tools/ |
D | idf-monitor.rst | 94 …0x400f360d: do_something_to_crash at /home/gus/esp/32/idf/examples/get-started/hello_world/main/./… 95 …(inlined by) inner_dont_crash at /home/gus/esp/32/idf/examples/get-started/hello_world/main/./hell… 103 …0x400f360d: do_something_to_crash at /home/gus/esp/32/idf/examples/get-started/hello_world/main/./… 104 …(inlined by) inner_dont_crash at /home/gus/esp/32/idf/examples/get-started/hello_world/main/./hell… 105 …0x400dbf56: still_dont_crash at /home/gus/esp/32/idf/examples/get-started/hello_world/main/./hello… 106 …0x400dbf5e: dont_crash at /home/gus/esp/32/idf/examples/get-started/hello_world/main/./hello_world… 107 …0x400dbf82: app_main at /home/gus/esp/32/idf/examples/get-started/hello_world/main/./hello_world_m…
|
/hal_espressif-2.7.6/examples/get-started/hello_world/ |
D | README.md | 19 …ce file in C language [hello_world_main.c](main/hello_world_main.c). The file is located in folder… 28 ├── main
|
/hal_espressif-2.7.6/examples/build_system/cmake/import_lib/main/ |
D | CMakeLists.txt | 1 idf_component_register(SRCS "main.cpp" 22 # Link tinyxml2 to main component
|
/hal_espressif-2.7.6/docs/zh_CN/contribute/ |
D | creating-examples.rst | 10 - ``main`` 目录需要包含一个名为 ``(something)_example_main.c`` 的源文件,里面包含示例项目的主要功能。 11 - 如果该示例项目的子任务比较多,请根据逻辑将其拆分为 ``main`` 目录下的多个 C 或者 C++ 源文件,并将对应的头文件也放在同一目录下。
|
/hal_espressif-2.7.6/tools/windows/ |
D | eclipse_make.py | 34 def main(): function 44 main()
|
/hal_espressif-2.7.6/components/partition_table/ |
D | gen_empty_partition.py | 40 def main(): function 60 r = main()
|