Searched refs:iram (Results 1 – 25 of 60) sorted by relevance
123
/hal_espressif-3.6.0/components/heap/test/ |
D | test_diram.c | 47 volatile uint32_t *iram = esp_ptr_diram_dram_to_iram(dram + i); variable 49 TEST_ASSERT_EQUAL(v, *iram); 50 *iram = UINT32_MAX; 51 TEST_ASSERT_EQUAL(UINT32_MAX, *iram); 60 uint32_t *iram = malloc_block_diram(MALLOC_CAP_EXEC); 64 iram[i] = v; 65 volatile uint32_t *dram = esp_ptr_diram_iram_to_dram(iram + i); 66 TEST_ASSERT_EQUAL_HEX32(v, iram[i]); 70 TEST_ASSERT_EQUAL_HEX32(UINT32_MAX, iram[i]); 73 free(iram);
|
/hal_espressif-3.6.0/components/esp_common/ |
D | soc.lf | 25 [sections:iram] 31 .iram.data+ 35 .iram.bss+
|
/hal_espressif-3.6.0/tools/ldgen/test/data/ |
D | base.lf | 43 [sections:iram] 45 .iram+ 58 iram -> iram0_text
|
/hal_espressif-3.6.0/components/esptool_py/esptool/flasher_stub/ld/ |
D | stub_32c2.ld | 2 iram : org = 0x40380000, len = 0x4000 12 } > iram
|
D | stub_32c3.ld | 8 iram : org = 0x40380000, len = 0x4000 18 } > iram
|
D | stub_32s3_beta_2.ld | 8 iram : org = 0x40378000, len = 0x18000 18 } > iram
|
D | stub_32c6_beta.ld | 8 iram : org = 0x40380000, len = 0x4000 18 } > iram
|
D | stub_32h2.ld | 8 iram : org = 0x40800000, len = 0x4000 18 } > iram
|
D | stub_32h2_beta_1.ld | 8 iram : org = 0x40380000, len = 0x4000 18 } > iram
|
D | stub_32h2_beta_2.ld | 8 iram : org = 0x40380000, len = 0x4000 18 } > iram
|
D | stub_32s2.ld | 8 iram : org = 0x40028000, len = 0x18000 18 } > iram
|
D | stub_32s3.ld | 8 iram : org = 0x40378000, len = 0x18000 18 } > iram
|
D | stub_32c6.ld | 19 iram : org = 0x40800000, len = 0x4000 29 } > iram
|
D | stub_32.ld | 22 iram : org = 0x400BE000, len = 0x1000 32 } > iram
|
D | stub_8266.ld | 22 iram : org = 0x4010D000, len = 0x2100 32 } > iram
|
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32s2/ |
D | bootloader.ld | 60 .iram.text : 153 .iram.text : 158 *(.iram .iram.*) /* catch stray IRAM_ATTR */
|
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32h2/ |
D | bootloader.ld | 58 .iram.text : 151 .iram.text : 156 *(.iram .iram.*) /* catch stray IRAM_ATTR */
|
/hal_espressif-3.6.0/tools/ldgen/samples/ |
D | esp32.lf | 43 [sections:iram] 58 iram -> iram0_text
|
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32/ |
D | bootloader.ld | 72 .iram.text : 165 .iram.text : 170 *(.iram .iram.*) /* catch stray IRAM_ATTR */
|
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32c3/ |
D | bootloader.ld | 60 .iram.text : 153 .iram.text : 158 *(.iram .iram.*) /* catch stray IRAM_ATTR */
|
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32s3/ |
D | bootloader.ld | 60 .iram.text : 153 .iram.text : 158 *(.iram .iram.*) /* catch stray IRAM_ATTR */
|
/hal_espressif-3.6.0/docs/zh_CN/api-guides/ |
D | linker-script-generation.rst | 581 [sections:iram] 587 iram -> iram0_text 620 …这是根据默认协议条目 ``iram -> iram0_text`` 生成的规则。默认协议指定了 ``iram -> iram0_text`` 条目,因此生成的规则同样也放在被 ``iram0_te…
|
/hal_espressif-3.6.0/examples/wifi/power_save/ |
D | sdkconfig.defaults | 15 # Enable wifi sleep iram optimization
|
/hal_espressif-3.6.0/tools/test_apps/system/bootloader_sections/ |
D | CMakeLists.txt | 14 --to-sections=.iram.text
|
/hal_espressif-3.6.0/docs/en/api-guides/ |
D | memory-types.rst | 29 …The maximum statically allocated DRAM size is reduced by the :ref:`iram` size of the compiled appl… 31 …le if it is used in an non-flash-safe ISR (see explanation under :ref:`how-to-place-code-in-iram`). 68 …d when registering the interrupt handler. For more information, see :ref:`iram-safe-interrupt-hand… 72 .. _how-to-place-code-in-iram: 115 If a function is not explicitly placed into :ref:`iram` or RTC memory, it is placed into flash. The…
|
123