This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Predefined Symbols中的预定义名"LARGE_MODEL"是什么作用的?

Predefined Symbols中的预定义名"LARGE_MODEL"是什么作用的?

我删了程序也能编译通过,也能运行,

"_DEBUG"是指会编译ESTOP0这些指令吗?如果没有就不编译是吗?

这些符号在哪里查啊,我是初学者,百度了没找到,求指导.

  • JingQuan,

    这些预定义符号是根据自己工程的需要来设置的。一般是用在条件编译上。比如我预定义一个 Flash 符号,然后在main中使用下面语句

    #if Flash

     调用memcpy函数;

     #endif

    所以具体这个符号是什么含义,要看你工程中是否有使用到它。

    Eric