IAR移植问题 #80
Unanswered
ZZGmannger
asked this question in
Q&A
IAR移植问题
#80
Replies: 1 comment
-
|
shell.h : 71 #ifndef SECTION
#if defined(__CC_ARM) || (defined(__ARMCC_VERSION) && __ARMCC_VERSION >= 6000000)
#define SECTION(x) __attribute__((used, section(x)))
#elif defined(__ICCARM__) || defined(__ICCRX__)
#define SECTION(x) @ x __root
#elif defined(__GNUC__)
#define SECTION(x) __attribute__((section(x)))
#else
#define SECTION(x)
#endif
#endif这样改下试试,原因是需要增加 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
有没有再IAR 移植过呀,我遇到一个问题 , 在初始化完后 , commandList.base 和
commandList.count 都为0 ,正常应该是由help 相关的命令吧、、
Beta Was this translation helpful? Give feedback.
All reactions