1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Updated HWDT one missed ICACHE_RAM_ATTR (#8018)

This commit is contained in:
M Hightower 2021-05-06 01:45:55 -07:00 committed by GitHub
parent bc816c657b
commit 1a381477ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ extern "C" void call_user_start();
static cont_t g_cont __attribute__ ((aligned (16))); static cont_t g_cont __attribute__ ((aligned (16)));
#if defined(DEBUG_ESP_HWDT_NOEXTRA4K) || defined(DEBUG_ESP_HWDT) #if defined(DEBUG_ESP_HWDT_NOEXTRA4K) || defined(DEBUG_ESP_HWDT)
extern "C" cont_t * ICACHE_RAM_ATTR get_noextra4k_g_pcont(void) extern "C" cont_t * IRAM_ATTR get_noextra4k_g_pcont(void)
{ {
return &g_cont; return &g_cont;
} }