ソースを参照

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 */

読み込み中…
キャンセル
保存