/hal_espressif-3.4.0/tools/test_idf_size/ |
D | test.sh | 10 …&& python -m coverage run -a $IDF_PATH/tools/idf_size.py --json build/hello_world.map > size_outpu… 18 …&& python -m coverage run -a $IDF_PATH/tools/idf_size.py --json app_$1.map | python $IDF_PATH/tool… 19 …&& python -m coverage run -a $IDF_PATH/tools/idf_size.py --json --archives app_$1.map | python $ID… 20 …&& python -m coverage run -a $IDF_PATH/tools/idf_size.py --json --files app_$1.map | python $IDF_P… 21 …-a $IDF_PATH/tools/idf_size.py --json --archive_details libdriver.a app_$1.map | python $IDF_PATH/… 31 && python -m coverage run -a $IDF_PATH/tools/idf_size.py app.map &>> output \ 33 && python -m coverage run -a $IDF_PATH/tools/idf_size.py bootloader.map &>> output \ 35 && python -m coverage run -a $IDF_PATH/tools/idf_size.py overflow.map &>> output \ 37 && python -m coverage run -a $IDF_PATH/tools/idf_size.py --archives app.map &>> output \ 39 && python -m coverage run -a $IDF_PATH/tools/idf_size.py --files app.map &>> output \ [all …]
|
/hal_espressif-3.4.0/components/esp_hid/src/ |
D | esp_hid_common.c | 65 static int add_report(temp_hid_report_map_t *map, esp_hid_report_item_t *item) in add_report() argument 67 if (map->reports_len >= 64) { in add_report() 71 memcpy(&(map->reports[map->reports_len]), item, sizeof(esp_hid_report_item_t)); in add_report() 72 map->reports_len++; in add_report() 85 temp_hid_report_map_t *map = s_temp_hid_report_map; in handle_report() local 87 memset(map, 0, sizeof(temp_hid_report_map_t)); in handle_report() 92 map->usage_mask |= ESP_HID_USAGE_KEYBOARD; in handle_report() 101 if (add_report(map, &item) != 0) { in handle_report() 107 if (add_report(map, &item) != 0) { in handle_report() 119 if (add_report(map, &item) != 0) { in handle_report() [all …]
|
D | ble_hidd.c | 27 /// Maximal length of Report Map Char. Value 116 // Report Map 450 // is this the last report map app? in hid_event_handler() 505 hidd_le_report_item_t *map = get_report_by_handle(dev, param->read.handle); in hid_event_handler() local 506 if (map && map->handle == param->read.handle) { in hid_event_handler() 507 …dex, esp_hid_usage_str(map->usage), esp_hid_report_type_str(map->report_type), esp_hid_protocol_mo… in hid_event_handler() 530 hidd_le_report_item_t *map = get_report_by_handle(dev, param->write.handle); in hid_event_handler() local 531 if (map) { in hid_event_handler() 532 if (param->write.handle == map->ccc_handle) { in hid_event_handler() 533 map->ccc.value = param->write.value[0]; in hid_event_handler() [all …]
|
/hal_espressif-3.4.0/components/esptool_py/esptool/flasher_stub/ |
D | Makefile | 97 …$(Q) $(CROSS_8266)gcc $(CFLAGS) -DESP8266=1 -Tstub_8266.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(filter … 101 …$(Q) $(CROSS_32)gcc $(CFLAGS) -DESP32=1 -Tstub_32.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(filter %.c, $… 105 …$(Q) $(CROSS_32S2)gcc $(CFLAGS) -DESP32S2=1 -Tstub_32s2.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(filter … 109 …c $(CFLAGS) -DESP32S3=1 -DESP32S3BETA2=1 -Tstub_32s3_beta_2.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(fil… 113 …$(Q) $(CROSS_32S3)gcc $(CFLAGS) -DESP32S3=1 -Tstub_32s3.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(filter … 117 …$(Q) $(CROSS_32C3)gcc $(CFLAGS_ESPRISCV32) -DESP32C3=1 -Tstub_32c3.ld -Wl,-Map=$(@:.elf=.map) -o $… 121 …A)gcc $(CFLAGS_ESPRISCV32) -DESP32C6BETA=1 -Tstub_32c6_beta.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(fil… 125 …SCV32) -DESP32H2BETA1=1 -DESP32H2BETA1=1 -Tstub_32h2_beta_1.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(fil… 129 …SCV32) -DESP32H2BETA2=1 -DESP32H2BETA2=1 -Tstub_32h2_beta_2.ld -Wl,-Map=$(@:.elf=.map) -o $@ $(fil… 133 …$(Q) $(CROSS_32C2)gcc $(CFLAGS_ESPRISCV32) -DESP32C2=1 -Tstub_32c2.ld -Wl,-Map=$(@:.elf=.map) -o $… [all …]
|
/hal_espressif-3.4.0/components/esp_hid/include/ |
D | esp_hid_common.h | 26 /* HID Report Map Values */ 148 uint8_t map_index; /*!< HID report map index */ 157 * @brief HID parsed report map structure 162 uint8_t reports_len; /*!< Number of reports discovered in the report map */ 163 esp_hid_report_item_t *reports; /*!< Reports discovered in the report map */ 167 * @brief HID raw report map structure 170 const uint8_t *data; /*!< Pointer to the HID report map data */ 171 uint16_t len; /*!< HID report map data length */ 189 * @brief Parse RAW HID report map 190 * It is a responsibility of the user to free the parsed report map, [all …]
|
D | esp_hidd.h | 98 uint8_t map_index; /*!< HID config report map index */ 110 uint8_t map_index; /*!< HID config report map index */ 121 uint8_t map_index; /*!< HID config report map index */ 130 uint8_t map_index; /*!< HID config report map index */ 183 * @param map_index : index of the device report map in the init config 195 * @param map_index : index of the device report map in the init config
|
/hal_espressif-3.4.0/examples/bluetooth/esp_hid_host/ |
D | README.md | 68 Report Map Length: 38 72 Report Map Length: 111 74 I (9722) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: 76 I (9812) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: 78 I (11822) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: 80 I (11912) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: 82 I (13922) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: 84 I (14012) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: 86 I (16022) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: 88 I (16112) ESP_HIDH_DEMO: fc:f5:c4:3c:62:92 INPUT: CCONTROL, MAP: 1, ID: 3, Len: 2, Data: [all …]
|
/hal_espressif-3.4.0/docs/en/api-guides/performance/ |
D | size.rst | 185 … possible to search in the ESP-IDF source tree or look in the :ref:`linker-map-file` for the full… 194 …map file in the build directory. It will have the name ``PROJECTNAME.map``. The ``idf-size.py`` to… 196 To compare with another binary, you will also need its corresponding ``.map`` file saved from the b… 202 $ $IDF_PATH/tools/idf_size.py --diff build_Og/https_request.map build_Os/https_request.map 203 <CURRENT> MAP file: build_Os/https_request.map 204 <REFERENCE> MAP file: build_Og/https_request.map 221 … $IDF_PATH/tools/idf_size.py --archives --diff build_Og/https_request.map build_Oshttps_request.map 227 $IDF_PATH/tools/idf_size.py --files --diff build_Og/https_request.map build_Oshttps_request.map 240 The map file argument is ``<projectname>.map`` in the build directory 244 $IDF_PATH/tools/idf_size.py build/project_name.map [all …]
|
/hal_espressif-3.4.0/components/esp_hid/test/ |
D | README.md | 23 #define TEST_DUMP(map) \ 24 printf("TEST_CASE(\"can parse " xstr(map) "\", \"[esp_hid]\")\n{\n"); \ 25 …hid_report_map_t * report_map = esp_hid_parse_report_map(" xstr(map) ", sizeof(" xstr(map) "));\n"… 26 dump_report_map(map, sizeof(map)); \
|
/hal_espressif-3.4.0/components/xtensa/include/xtensa/ |
D | mpuasm.h | 31 * Macro for writing MPU map. 34 * a_map => address register containing pointer to MPU map 35 * a_num_entries => number of entries in the forementioned map 69 addx8 \a_map, \a_num_entries, \a_map // compute end of provided map 91 * Macro for reading MPU map 94 * a_map_ptr => address register pointing to memory where map is written 100 addx8 \a_map_ptr, \a_temp1, \a_map_ptr // set map ptr to last entry + 1
|
/hal_espressif-3.4.0/components/espcoredump/test_apps/ |
D | CMakeLists.txt | 4 # Use -ffile-prefix-map to map the local path prefix to ci path prefix 8 -ffile-prefix-map=$ENV{IDF_PATH}=/builds/espressif/esp-idf") 12 -ffile-prefix-map=$ENV{IDF_PATH}=/builds/espressif/esp-idf")
|
/hal_espressif-3.4.0/examples/storage/partition_api/partition_mmap/ |
D | README.md | 1 # Partition Memory Map Example 3 This example demonstrates how to use `esp_partition_mmap` to configure MMU and map a partition into… 15 I (309) example: Written sample data to partition: ESP-IDF Partition Memory Map Example 17 I (319) example: Read sample data from partition using mapped memory: ESP-IDF Partition Memory Map …
|
/hal_espressif-3.4.0/components/freertos/include/freertos/ |
D | mpu_wrappers.h | 40 * Map standard (non MPU) API functions to equivalents that start 47 /* Map standard tasks.h API functions to the MPU equivalents. */ 91 /* Map standard queue.h API functions to the MPU equivalents. */ 120 /* Map standard timer.h API functions to the MPU equivalents. */ 134 /* Map standard event_group.h API functions to the MPU equivalents. */ 143 /* Map standard message/stream_buffer.h API functions to the MPU
|
/hal_espressif-3.4.0/components/esp_hw_support/include/soc/esp32/ |
D | himem.h | 38 * @brief Allocate a memory region to map blocks into 40 * This allocates a contiguous CPU memory region that can be used to map blocks 53 * @brief Map a block of high memory into the CPUs address space 61 * @param range Range handle to map the memory in 62 * @param ram_offset Offset into the block of physical memory of the block to map 64 * @param len Length of region to map
|
/hal_espressif-3.4.0/components/bootloader_support/include_bootloader/ |
D | bootloader_flash_priv.h | 52 * @brief Map a region of flash to data memory 62 * @param offset - Starting flash offset to map to memory. 63 * @param length - Length of data to map. 139 * @brief Calculate the number of cache pages to map 140 * @param size size of data to map
|
/hal_espressif-3.4.0/docs/en/security/ |
D | esp32c3_log.inc | 27 I (46) esp_image: segment 0: paddr=0x00020020 vaddr=0x3c020020 size=0x05508 ( 21768) map 33 I (84) esp_image: segment 4: paddr=0x00030020 vaddr=0x42000020 size=0x171a8 ( 94632) map 53 I (686) esp_image: segment 0: paddr=0x00020020 vaddr=0x3c020020 size=0x05508 ( 21768) map 59 I (717) esp_image: segment 4: paddr=0x00030020 vaddr=0x42000020 size=0x171a8 ( 94632) map 96 I (49) esp_image: segment 0: paddr=0x00020020 vaddr=0x3c020020 size=0x05508 ( 21768) map 102 I (88) esp_image: segment 4: paddr=0x00030020 vaddr=0x42000020 size=0x171a8 ( 94632) map
|
D | esp32s3_log.inc | 29 I (103) esp_image: segment 0: paddr=00020020 vaddr=3c020020 size=08118h ( 33048) map 32 I (134) esp_image: segment 3: paddr=00030020 vaddr=42000020 size=1a710h (108304) map 51 I (629) esp_image: segment 0: paddr=00020020 vaddr=3c020020 size=08118h ( 33048) map 54 I (651) esp_image: segment 3: paddr=00030020 vaddr=42000020 size=1a710h (108304) map 94 I (110) esp_image: segment 0: paddr=00020020 vaddr=3c020020 size=08118h ( 33048) map 97 I (141) esp_image: segment 3: paddr=00030020 vaddr=42000020 size=1a710h (108304) map
|
D | esp32_log.inc | 31 I (85) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f400020 size=0x0808c ( 32908) map 37 I (132) esp_image: segment 4: paddr=0x00030018 vaddr=0x400d0018 size=0x126a8 ( 75432) map 57 I (657) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f400020 size=0x0808c ( 32908) map 63 I (692) esp_image: segment 4: paddr=0x00030018 vaddr=0x400d0018 size=0x126a8 ( 75432) map 101 I (86) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f400020 size=0x0808c ( 32908) map 107 I (134) esp_image: segment 4: paddr=0x00030018 vaddr=0x400d0018 size=0x126a8 ( 75432) map
|
D | esp32s2_log.inc | 29 I (109) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f000020 size=0x0618c ( 24972) map 37 I (153) esp_image: segment 4: paddr=0x00030020 vaddr=0x40080020 size=0x1457c ( 83324) map 60 I (766) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f000020 size=0x0618c ( 24972) map 68 I (799) esp_image: segment 4: paddr=0x00030020 vaddr=0x40080020 size=0x1457c ( 83324) map 111 I (117) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f000020 size=0x0618c ( 24972) map 119 I (161) esp_image: segment 4: paddr=0x00030020 vaddr=0x40080020 size=0x1457c ( 83324) map
|
/hal_espressif-3.4.0/docs/zh_CN/security/ |
D | esp32c3_log.inc | 27 I (46) esp_image: segment 0: paddr=0x00020020 vaddr=0x3c020020 size=0x05508 ( 21768) map 33 I (84) esp_image: segment 4: paddr=0x00030020 vaddr=0x42000020 size=0x171a8 ( 94632) map 53 I (686) esp_image: segment 0: paddr=0x00020020 vaddr=0x3c020020 size=0x05508 ( 21768) map 59 I (717) esp_image: segment 4: paddr=0x00030020 vaddr=0x42000020 size=0x171a8 ( 94632) map 96 I (49) esp_image: segment 0: paddr=0x00020020 vaddr=0x3c020020 size=0x05508 ( 21768) map 102 I (88) esp_image: segment 4: paddr=0x00030020 vaddr=0x42000020 size=0x171a8 ( 94632) map
|
D | esp32_log.inc | 31 I (85) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f400020 size=0x0808c ( 32908) map 37 I (132) esp_image: segment 4: paddr=0x00030018 vaddr=0x400d0018 size=0x126a8 ( 75432) map 57 I (657) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f400020 size=0x0808c ( 32908) map 63 I (692) esp_image: segment 4: paddr=0x00030018 vaddr=0x400d0018 size=0x126a8 ( 75432) map 101 I (86) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f400020 size=0x0808c ( 32908) map 107 I (134) esp_image: segment 4: paddr=0x00030018 vaddr=0x400d0018 size=0x126a8 ( 75432) map
|
D | esp32s2_log.inc | 29 I (109) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f000020 size=0x0618c ( 24972) map 37 I (153) esp_image: segment 4: paddr=0x00030020 vaddr=0x40080020 size=0x1457c ( 83324) map 60 I (766) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f000020 size=0x0618c ( 24972) map 68 I (799) esp_image: segment 4: paddr=0x00030020 vaddr=0x40080020 size=0x1457c ( 83324) map 111 I (117) esp_image: segment 0: paddr=0x00020020 vaddr=0x3f000020 size=0x0618c ( 24972) map 119 I (161) esp_image: segment 4: paddr=0x00030020 vaddr=0x40080020 size=0x1457c ( 83324) map
|
/hal_espressif-3.4.0/components/hal/esp32/include/hal/ |
D | adc_ll.h | 541 …art1.sar1_en_pad_force = 1; // 1: SW control RTC ADC bit map; 0: ULP control RTC ADC bit map; in adc_ll_set_controller() 548 …art1.sar1_en_pad_force = 0; // 1: SW control RTC ADC bit map; 0: ULP control RTC ADC bit map; in adc_ll_set_controller() 555 …art1.sar1_en_pad_force = 1; // 1: SW control RTC ADC bit map; 0: ULP control RTC ADC bit map; in adc_ll_set_controller() 566 …art2.sar2_en_pad_force = 1; // 1: SW control RTC ADC bit map; 0: ULP control RTC ADC bit map; in adc_ll_set_controller() 573 …art2.sar2_en_pad_force = 0; // 1: SW control RTC ADC bit map; 0: ULP control RTC ADC bit map; in adc_ll_set_controller() 580 …art2.sar2_en_pad_force = 1; // 1: SW control RTC ADC bit map; 0: ULP control RTC ADC bit map; in adc_ll_set_controller() 587 …art2.sar2_en_pad_force = 1; // 1: SW control RTC ADC bit map; 0: ULP control RTC ADC bit map; in adc_ll_set_controller()
|
/hal_espressif-3.4.0/components/esp_hw_support/port/esp32s2/ |
D | spiram.c | 113 … /* map the address from SPIRAM end to the start, map the address in order: DRAM0, DRAM1, DPORT */ in esp_spiram_init_cache() 115 /* psram need to be mapped vaddr size <= 3MB + 512 KB, only map DRAM0 bus */ in esp_spiram_init_cache() 119 /* psram need to be mapped vaddr size <= 7MB + 512KB, only map DRAM0 and DRAM1 bus */ in esp_spiram_init_cache() 123 …/* psram need to be mapped vaddr size <= 10MB + 512KB - bss_page_align_size, map DRAM0, DRAM1, DPO… in esp_spiram_init_cache() 127 …/* psram need to be mapped vaddr size > 10MB + 512KB - bss_page_align_size, map DRAM0, DRAM1, DPOR… in esp_spiram_init_cache() 321 // virtual address space is enough to map the abandoned physical address in esp_spiram_add_to_heapalloc() 333 // still not enough to map the abandoned physical address space in spiram, in esp_spiram_add_to_heapalloc()
|
/hal_espressif-3.4.0/examples/storage/partition_api/partition_mmap/main/ |
D | main.c | 26 // Find the partition map in the partition table in app_main() 30 static const char store_data[] = "ESP-IDF Partition Memory Map Example"; in app_main() 40 // Map the partition to data memory in app_main()
|