Fixed RAM_CONST_ATTR macro.

I must've gotten distracted halfway through that copy/paste job :(
This commit is contained in:
Johny Mattsson 2015-07-08 17:51:44 +10:00
parent 67d785ffec
commit ebfc808629

View File

@ -85,7 +85,7 @@ typedef enum {
#endif /* ICACHE_FLASH */
#define TEXT_SECTION_ATTR __attribute__((section(".text")))
#define RAM_CONST_ATTR __attribute__((section(".text")))
#define RAM_CONST_ATTR __attribute__((section(".rodata")))
#ifndef __cplusplus
typedef unsigned char bool;