aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/main.cpp b/src/main.cpp
deleted file mode 100644
index 013ffdf..0000000
--- a/src/main.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "wiring.h"
-#include "HardwareSerial.h"
-#include "wiring_math.h"
-#include "HardwareUsb.h"
-#include "usb.h"
-
-#define TEST_PIN 13
-
-void setup() {
- pinMode(TEST_PIN, OUTPUT);
-}
-
-int toggle = 1;
-
-void loop() {
- digitalWrite(TEST_PIN, toggle);
- toggle ^= 1;
- delay(100);
-}
-
-int main(void) {
- init();
- setup();
-
- while (1) {
- loop();
- }
- return 0;
-}
-
-/* Required for C++ hackery */
-/* TODO: This really shouldn't go here... move it later
- * */
-extern "C" void __cxa_pure_virtual(void) {
- while(1)
- ;
-}