Removed deprecated tests.
[goodfet] / firmware / tests / echo / echo.c
diff --git a/firmware/tests/echo/echo.c b/firmware/tests/echo/echo.c
deleted file mode 100644 (file)
index 5938488..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-//GOODFET Echo test.\r
-\r
-\r
-#include "platform.h"\r
-\r
-#include <signal.h>\r
-#include <io.h>\r
-#include <iomacros.h>\r
-\r
-\r
-//LED on P1.0\r
-//IO on P5\r
-\r
-//! Initialize registers and all that jazz.\r
-void init(){\r
-  volatile unsigned int i;\r
-  WDTCTL = WDTPW + WDTHOLD;                 // Stop watchdog timer\r
-  \r
-  //LED and TX OUT\r
-  PLEDDIR |= PLEDPIN;\r
-  \r
-  msp430_init_dco();\r
-  msp430_init_uart();\r
-  \r
-  //Enable Interrupts.\r
-  //eint();\r
-}\r
-\r
-//! Main loop.\r
-int main(void)\r
-{\r
-  volatile unsigned int i;\r
-  init();\r
-  \r
-  \r
-  PLEDOUT^=PLEDPIN;  // Blink\r
-  \r
-  //while(1) serial_tx(serial_rx());\r
-  while(1) serial_tx('G');\r
-  \r
-  while(1){\r
-    i = 10000;\r
-    while(i--);\r
-    \r
-    PLEDOUT^=PLEDPIN;  // Blink\r
-  }\r
-}\r
-\r