mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +08:00
8 lines
174 B
C
8 lines
174 B
C
#ifndef _SECTIONS_H_
|
|
#define _SECTIONS_H_
|
|
|
|
#define TEXT_SECTION_ATTR __attribute__((section(".text")))
|
|
#define RAM_CONST_SECTION_ATTR __attribute((section(".data")))
|
|
|
|
#endif
|