Sfoglia il codice sorgente

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 anni fa
parent
commit
bb50cbc3c1
Non sono state trovate chiavi note per questa firma nel database
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      src/core/main.cpp

+ 2
- 1
src/core/main.cpp Vedi File

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

Loading…
Annulla
Salva