Merge pull request #538 from DiUS/dev

Fixed RAM_CONST_ATTR macro.
This commit is contained in:
Vowstar 2015-07-11 12:13:26 +08:00
commit 6ec4ad3e90
1 changed files with 1 additions and 1 deletions

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;