Home
last modified time | relevance | path

Searched full:map (Results 1 – 25 of 246) sorted by relevance

12345678910

/hal_espressif-2.7.6/tools/test_idf_size/
Dtest.sh6 && coverage run -a $IDF_PATH/tools/idf_size.py app.map &>> output \
8 && coverage run -a $IDF_PATH/tools/idf_size.py bootloader.map &>> output \
10 && coverage run -a $IDF_PATH/tools/idf_size.py --archives app.map &>> output \
12 && coverage run -a $IDF_PATH/tools/idf_size.py --files app.map &>> output \
14 … && coverage run -a $IDF_PATH/tools/idf_size.py --archive_details libdriver.a app.map &>> output \
16 && coverage run -a $IDF_PATH/tools/idf_size.py app.map --diff bootloader.map &>> output \
18 && coverage run -a $IDF_PATH/tools/idf_size.py app.map --diff app.map &>> output \
20 && coverage run -a $IDF_PATH/tools/idf_size.py app.map --diff app2.map &>> output \
22 && coverage run -a $IDF_PATH/tools/idf_size.py app2.map --diff app.map &>> output \
24 …&& coverage run -a $IDF_PATH/tools/idf_size.py app.map --archives --diff bootloader.map &>> output…
[all …]
/hal_espressif-2.7.6/components/esp_hid/src/
Desp_hid_common.c65 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 …]
Dble_hidd.c35 /// Maximal length of Report Map Char. Value
121 // Report Map
140 uint8_t map_index; //the index of the report map
145 uint16_t value_len; //maximum len of value by report map
474 // is this the last report map app? in hid_event_handler()
529 hidd_le_report_item_t *map = get_report_by_handle(dev, param->read.handle); in hid_event_handler() local
530 if (map && map->handle == param->read.handle) { in hid_event_handler()
531 …dex, esp_hid_usage_str(map->usage), esp_hid_report_type_str(map->report_type), esp_hid_protocol_mo… in hid_event_handler()
554 hidd_le_report_item_t *map = get_report_by_handle(dev, param->write.handle); in hid_event_handler() local
555 if (map) { in hid_event_handler()
[all …]
Dbt_hidh.c96 ESP_LOGE(TAG, "Malloc Report Map Failed"); in bta_hh_cb()
104 esp_hid_report_map_t *map; in bta_hh_cb() local
107map = esp_hid_parse_report_map(dev->config.report_maps[0].data, dev->config.report_maps[0].len); in bta_hh_cb()
108 if (map) { in bta_hh_cb()
110 dev->usage = map->usage; in bta_hh_cb()
114 for (uint8_t i = 0; i < map->reports_len; i++) { in bta_hh_cb()
115 r = &map->reports[i]; in bta_hh_cb()
132 dev->reports_len = map->reports_len; in bta_hh_cb()
133 free(map->reports); in bta_hh_cb()
134 free(map); in bta_hh_cb()
[all …]
/hal_espressif-2.7.6/components/esp_hid/include/
Desp_hid_common.h26 /* HID Report Map Values */
133 uint8_t map_index; /*!< HID report map index */
142 * @brief HID parsed report map structure
147 uint8_t reports_len; /*!< Number of reports discovered in the report map */
148 esp_hid_report_item_t *reports; /*!< Reports discovered in the report map */
152 * @brief HID raw report map structure
155 const uint8_t *data; /*!< Pointer to the HID report map data */
156 uint16_t len; /*!< HID report map data length */
174 * @brief Parse RAW HID report map
175 * It is a responsibility of the user to free the parsed report map,
[all …]
Desp_hidd.h80 uint8_t map_index; /*!< HID config report map index */
92 uint8_t map_index; /*!< HID config report map index */
101 uint8_t map_index; /*!< HID config report map index */
110 uint8_t map_index; /*!< HID config report map index */
163 * @param map_index : index of the device report map in the init config
175 * @param map_index : index of the device report map in the init config
Desp_hidh.h84 uint8_t map_index; /*!< HID report map index */
96 uint8_t map_index; /*!< HID report map index */
141 * @param map_index : index of the device report map
153 * @param map_index : index of the device report map
165 * @param map_index : index of the device report map
/hal_espressif-2.7.6/components/esp_hid/test/
DREADME.md23 #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-2.7.6/components/xtensa/include/xtensa/
Dmpuasm.h31 * 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-2.7.6/examples/storage/partition_api/partition_mmap/
DREADME.md1 # 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
Dpartition_mmap_example_test.py13 dut.expect_all('Written sample data to partition: ESP-IDF Partition Memory Map Example',
15 … 'Read sample data from partition using mapped memory: ESP-IDF Partition Memory Map Example',
/hal_espressif-2.7.6/components/freertos/include/freertos/
Dmpu_wrappers.h41 * Map standard (non MPU) API functions to equivalents that start
48 /* Map standard tasks.h API functions to the MPU equivalents. */
92 /* Map standard queue.h API functions to the MPU equivalents. */
121 /* Map standard timer.h API functions to the MPU equivalents. */
135 /* Map standard event_group.h API functions to the MPU equivalents. */
144 /* Map standard message/stream_buffer.h API functions to the MPU
/hal_espressif-2.7.6/components/esp32/include/esp32/
Dhimem.h46 * @brief Allocate a memory region to map blocks into
48 * This allocates a contiguous CPU memory region that can be used to map blocks
61 * @brief Map a block of high memory into the CPUs address space
69 * @param range Range handle to map the memory in
70 * @param ram_offset Offset into the block of physical memory of the block to map
72 * @param len Length of region to map
/hal_espressif-2.7.6/components/esp32s2/
Dspiram.c124 …/* map the address from SPIRAM end to the start, map the address in order: DRAM1, DRAM1, DPORT, DB… in esp_spiram_init_cache()
126 /* cache size <= 3MB + 512 KB, only map DRAM0 bus */ in esp_spiram_init_cache()
130 /* cache size <= 7MB + 512KB, only map DRAM0 and DRAM1 bus */ in esp_spiram_init_cache()
134 /* cache size <= 10MB + 512KB, map DRAM0, DRAM1, DPORT bus */ in esp_spiram_init_cache()
140 /* cache size <= 14MB + 512KB, map DRAM0, DRAM1, DPORT bus, as well as data bus3 */ in esp_spiram_init_cache()
143 /* cache size > 14MB + 512KB, map DRAM0, DRAM1, DPORT bus, as well as data bus3 */ in esp_spiram_init_cache()
149 … /* cache size > 10MB + 512KB, map DRAM0, DRAM1, DPORT bus , only remap 0x3f500000 ~ 0x3ff90000*/ in esp_spiram_init_cache()
338 /* cache size <= 10MB + 512KB, map DRAM0, DRAM1, DPORT bus */ in esp_spiram_add_to_heapalloc()
343 /* cache size <= 14MB + 512KB, map DRAM0, DRAM1, DPORT bus, as well as data bus3 */ in esp_spiram_add_to_heapalloc()
/hal_espressif-2.7.6/docs/zh_CN/security/
Desp32c3_log.inc27 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
Desp32_log.inc31 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
Desp32s2_log.inc29 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-2.7.6/docs/en/security/
Desp32c3_log.inc27 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
Desp32_log.inc31 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
Desp32s2_log.inc29 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-2.7.6/components/bootloader_support/include_bootloader/
Dbootloader_flash_priv.h59 * @brief Map a region of flash to data memory
69 * @param offset - Starting flash offset to map to memory.
70 * @param length - Length of data to map.
146 * @brief Calculate the number of cache pages to map
147 * @param size size of data to map
/hal_espressif-2.7.6/examples/storage/partition_api/partition_mmap/main/
Dmain.c26 // 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()
/hal_espressif-2.7.6/components/hal/esp32/include/hal/
Dadc_ll.h498 …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()
505 …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()
512 …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()
523 …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()
530 …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()
537 …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()
544 …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-2.7.6/components/bootloader_support/src/
Dbootloader_flash.c48 static spi_flash_mmap_handle_t map; variable
57 if (map) { in bootloader_mmap()
64 esp_err_t err = spi_flash_mmap(src_page, size, SPI_FLASH_MMAP_DATA, &result, &map); in bootloader_mmap()
74 if (mapping && map) { in bootloader_munmap()
75 spi_flash_munmap(map); in bootloader_munmap()
77 map = 0; in bootloader_munmap()
172 return NULL; /* can't map twice */ in bootloader_mmap()
305 uint32_t map_at = word_src & MMU_FLASH_MASK; /* Map this 64KB block from flash */ in bootloader_flash_read_allow_decrypt()
/hal_espressif-2.7.6/components/ulp/cmake/
DCMakeLists.txt95 -Map=${CMAKE_CURRENT_BINARY_DIR}/${ULP_APP_NAME}.map")
122 set(EXTRA_LINKER_ARGS "-Map=${CMAKE_CURRENT_BINARY_DIR}/${ULP_APP_NAME}.map")

12345678910