INITPLATFORM was cut from goodfet.c
[goodfet] / firmware / goodfet.c
index f5c7ece..b9c500c 100644 (file)
 //! Initialize registers and all that jazz.
 void init()
 {
-#ifdef DAC12IR
-       int i;
-#endif
-
        WDTCTL = WDTPW + WDTHOLD;                                       // Stop watchdog timer
 
        //LED out and on.
@@ -84,6 +80,10 @@ void init()
 
        //Enable Interrupts.
        //eint();
+       
+#ifdef INITPLATFORM
+       INITPLATFORM
+#endif
 }