1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00
This commit is contained in:
Steven Conaway 2018-03-11 20:13:53 -07:00 committed by Develo
parent f070b55e11
commit ad5691d637

View File

@ -24,7 +24,7 @@ On the ESP8266 PROGMEM is a macro:
#define ICACHE_RODATA_ATTR __attribute__((section(".irom.text"))) #define ICACHE_RODATA_ATTR __attribute__((section(".irom.text")))
Which places the variable in the .irom.text section ie flash. Placing strings in Which places the variable in the .irom.text section in flash. Placing strings in
flash requires using any of the methods above. flash requires using any of the methods above.
| ### Declare a global string to be stored in flash. | ### Declare a global string to be stored in flash.