mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-01-13 15:17:43 +00:00
8 lines
170 B
C
8 lines
170 B
C
#ifndef ATTRS_H
|
|
#define ATTRS_H
|
|
|
|
#define RAMFUNC __attribute__ ((long_call, section (".ramsection")))
|
|
#define FAST __attribute__((optimize("-Ofast")))
|
|
|
|
#endif // ATTRS_H
|