From 35f5f6e99f15e0cc674c814937c82ef5fbbf86c3 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Sat, 21 Nov 2009 23:23:43 +0000 Subject: Improving third-party hardware support: - moving back to multple cores per platform - using target instead of platform - moving per-board and per-programmer preferences out of Preferences.java and into a new Target class - adding a new "target" preference - support for platform:value values in board preferences for bootloader path and core - XXX: need to support platform:value syntax for board upload.using preferences. --- cores/arduino/main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 cores/arduino/main.cpp (limited to 'cores/arduino/main.cpp') diff --git a/cores/arduino/main.cpp b/cores/arduino/main.cpp new file mode 100755 index 0000000..cc6e81d --- /dev/null +++ b/cores/arduino/main.cpp @@ -0,0 +1,14 @@ +#include + +int main(void) +{ + init(); + + setup(); + + for (;;) + loop(); + + return 0; +} + -- cgit v1.2.3-18-g5258