diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2009-11-21 23:23:43 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2009-11-21 23:23:43 +0000 |
commit | 35f5f6e99f15e0cc674c814937c82ef5fbbf86c3 (patch) | |
tree | bc2c0bbb790831ab26bfa8221cf6f3554363b89b /core/main.cpp | |
parent | 80d8477877dc004f293d0ab1717b8783421d84a0 (diff) |
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.
Diffstat (limited to 'core/main.cpp')
-rwxr-xr-x | core/main.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/core/main.cpp b/core/main.cpp deleted file mode 100755 index cc6e81d..0000000 --- a/core/main.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include <WProgram.h> - -int main(void) -{ - init(); - - setup(); - - for (;;) - loop(); - - return 0; -} - |