Beginning EJTAG (MIPS) support with an empty app.
[goodfet] / firmware / include / platform.h
index f8efd75..113549c 100644 (file)
@@ -1,18 +1,16 @@
-//! \file platform.h
+/*! \file platform.h
+  \author Travis Goodspeed
+  \brief Port and baud rate definitions.
+  
+  The functions specified here are defined in the platform
+  definition file, such as msp430x1612.c or msp430x2618.c.
+*/
 
 #include <signal.h>
 #include <io.h>
 #include <iomacros.h>
 
-
-//Use P3 instead of P5 for target I/O on chips without P5.
-//#ifndef P5OUT
-//#warning "P5OUT undefined, using P3 instead."
-//#define P5OUT P3OUT
-//#define P5DIR P3DIR
-//#define P5REN P3REN
-//#define P5IN P3IN
-//#endif
+#include "gfports.h"
 
 unsigned char serial_rx();
 void serial_tx(unsigned char);