Home
last modified time | relevance | path

Searched refs:iram (Results 1 – 25 of 60) sorted by relevance

123

/hal_espressif-3.6.0/components/heap/test/
Dtest_diram.c47 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/
Dsoc.lf25 [sections:iram]
31 .iram.data+
35 .iram.bss+
/hal_espressif-3.6.0/tools/ldgen/test/data/
Dbase.lf43 [sections:iram]
45 .iram+
58 iram -> iram0_text
/hal_espressif-3.6.0/components/esptool_py/esptool/flasher_stub/ld/
Dstub_32c2.ld2 iram : org = 0x40380000, len = 0x4000
12 } > iram
Dstub_32c3.ld8 iram : org = 0x40380000, len = 0x4000
18 } > iram
Dstub_32s3_beta_2.ld8 iram : org = 0x40378000, len = 0x18000
18 } > iram
Dstub_32c6_beta.ld8 iram : org = 0x40380000, len = 0x4000
18 } > iram
Dstub_32h2.ld8 iram : org = 0x40800000, len = 0x4000
18 } > iram
Dstub_32h2_beta_1.ld8 iram : org = 0x40380000, len = 0x4000
18 } > iram
Dstub_32h2_beta_2.ld8 iram : org = 0x40380000, len = 0x4000
18 } > iram
Dstub_32s2.ld8 iram : org = 0x40028000, len = 0x18000
18 } > iram
Dstub_32s3.ld8 iram : org = 0x40378000, len = 0x18000
18 } > iram
Dstub_32c6.ld19 iram : org = 0x40800000, len = 0x4000
29 } > iram
Dstub_32.ld22 iram : org = 0x400BE000, len = 0x1000
32 } > iram
Dstub_8266.ld22 iram : org = 0x4010D000, len = 0x2100
32 } > iram
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32s2/
Dbootloader.ld60 .iram.text :
153 .iram.text :
158 *(.iram .iram.*) /* catch stray IRAM_ATTR */
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32h2/
Dbootloader.ld58 .iram.text :
151 .iram.text :
156 *(.iram .iram.*) /* catch stray IRAM_ATTR */
/hal_espressif-3.6.0/tools/ldgen/samples/
Desp32.lf43 [sections:iram]
58 iram -> iram0_text
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32/
Dbootloader.ld72 .iram.text :
165 .iram.text :
170 *(.iram .iram.*) /* catch stray IRAM_ATTR */
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32c3/
Dbootloader.ld60 .iram.text :
153 .iram.text :
158 *(.iram .iram.*) /* catch stray IRAM_ATTR */
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32s3/
Dbootloader.ld60 .iram.text :
153 .iram.text :
158 *(.iram .iram.*) /* catch stray IRAM_ATTR */
/hal_espressif-3.6.0/docs/zh_CN/api-guides/
Dlinker-script-generation.rst581 [sections:iram]
587 iram -> iram0_text
620 …这是根据默认协议条目 ``iram -> iram0_text`` 生成的规则。默认协议指定了 ``iram -> iram0_text`` 条目,因此生成的规则同样也放在被 ``iram0_te…
/hal_espressif-3.6.0/examples/wifi/power_save/
Dsdkconfig.defaults15 # Enable wifi sleep iram optimization
/hal_espressif-3.6.0/tools/test_apps/system/bootloader_sections/
DCMakeLists.txt14 --to-sections=.iram.text
/hal_espressif-3.6.0/docs/en/api-guides/
Dmemory-types.rst29 …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