Home
last modified time | relevance | path

Searched refs:DRAM_STR (Results 1 – 11 of 11) sorted by relevance

/hal_espressif-3.6.0/components/espcoredump/src/
Dcore_dump_checksum.c159 esp_rom_printf(DRAM_STR("%s='"), msg); in esp_core_dump_print_sha256()
163 esp_rom_printf(DRAM_STR("%02x"), sha_output[i]); in esp_core_dump_print_sha256()
165 esp_rom_printf(DRAM_STR("'\r\n")); in esp_core_dump_print_sha256()
182 esp_rom_printf(DRAM_STR("%s='"), msg); in esp_core_dump_print_checksum()
184 esp_rom_printf(DRAM_STR("%08x"), *((const uint32_t*) checksum)); in esp_core_dump_print_checksum()
185 esp_rom_printf(DRAM_STR("'\r\n")); in esp_core_dump_print_checksum()
Dcore_dump_uart.c64 esp_rom_printf(DRAM_STR("================= CORE DUMP START =================\r\n")); in esp_core_dump_uart_write_start()
85 esp_rom_printf(DRAM_STR("%s\r\n"), buf); in esp_core_dump_uart_write_end()
87 esp_rom_printf(DRAM_STR("================= CORE DUMP END =================\r\n")); in esp_core_dump_uart_write_end()
90 esp_core_dump_print_checksum(DRAM_STR("Coredump checksum"), cs_addr); in esp_core_dump_uart_write_end()
114 esp_rom_printf(DRAM_STR("%s\r\n"), buf); in esp_core_dump_uart_write_data()
/hal_espressif-3.6.0/tools/test_apps/system/flash_psram/main/
Dtest_flash_psram.c65 printf(DRAM_STR("----------SPI0 PSRAM Test Success----------\n\n")); in spi0_psram_test()
84 printf(DRAM_STR("----------SPI1 Flash Test----------\n")); in spi1_flash_test()
104 …printf(DRAM_STR("error happened between 0x%x and 0x%x!!!!\n"), test_flash_addr, test_flash_addr + … in spi1_flash_test()
107 … printf(DRAM_STR("err: wr[%d]: 0x%02x -- rd[%d]: 0x%02x\n"), i, wr_buf[i], i, rd_buf[i]); in spi1_flash_test()
115 printf(DRAM_STR("----------SPI1 Flash Test Success----------\n\n")); in spi1_flash_test()
143 printf(DRAM_STR("----------SPI0 Flash Test Success----------\n\n")); in spi0_flash_test()
/hal_espressif-3.6.0/components/esp_system/
Dtask_wdt.c158 cpu=xTaskGetAffinity(twdttask->task_handle)==0?DRAM_STR("CPU 0"):DRAM_STR("CPU 1"); in task_wdt_isr()
160 cpu=DRAM_STR("CPU 0/1"); in task_wdt_isr()
165 ESP_EARLY_LOGE(TAG, "%s", DRAM_STR("Tasks currently running:")); in task_wdt_isr()
/hal_espressif-3.6.0/docs/zh_CN/api-reference/storage/
Dspi_flash_concurrency.rst55 为常量添加 ``DRAM_ATTR`` 和 ``DRAM_STR`` 属性::
60 const static char *MSG = DRAM_STR("I am a string stored in RAM");
/hal_espressif-3.6.0/components/espcoredump/include_core_dump/
Desp_core_dump_types.h29 … level, format, ... ) if (LOG_LOCAL_LEVEL >= level) { esp_rom_printf(DRAM_STR(format), esp_log_…
/hal_espressif-3.6.0/components/esp_common/include/
Desp_attr.h62 #define DRAM_STR(str) (__extension__({static const DRAM_ATTR char __c[] = (str); (const char *)&__c… macro
/hal_espressif-3.6.0/components/bt/controller/esp32/
Dhli_api.c192 esp_rom_printf(DRAM_STR("Fatal error in queue_signal: s_meta_queue full\n")); in queue_signal()
/hal_espressif-3.6.0/components/log/include/
Desp_log.h487 #define _ESP_LOG_DRAM_LOG_FORMAT(letter, format) DRAM_STR(#letter " %s: " format "\n")
/hal_espressif-3.6.0/docs/en/api-guides/
Dmemory-types.rst99 const static char *MSG = DRAM_STR("I am a string stored in RAM");
/hal_espressif-3.6.0/components/spi_flash/test/
Dtest_esp_flash.c768 esp_rom_printf(DRAM_STR("write qe: %d->%d\n"), qe, !qe); in test_toggle_qe()