浏览代码

don't build / link-in a main() by default

allow lib users to implement main() by only compiling the default main()
if TEENSY_CORE_MAIN is defined
main
John Robinson 3 年前
父节点
当前提交
bb50cbc3c1
找不到此签名对应的密钥
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/core/main.cpp

+ 2
- 1
src/core/main.cpp 查看文件

@@ -28,6 +28,7 @@
* SOFTWARE.
*/

#ifdef TEENSY_CORE_MAIN
#include <core/Arduino.h>

extern "C" int main(void)
@@ -55,4 +56,4 @@ extern "C" int main(void)
}
#endif
}
#endif /* TEENSY_CORE_MAIN */

正在加载...
取消
保存