Getting closer to an I2C Python client.
[goodfet] / firmware / apps / jtag / jtag.c
index bafd01e..ea02b40 100644 (file)
@@ -8,10 +8,8 @@
 #include "jtag.h"
 
 
-
-
 //! Set up the pins for JTAG mode.
-unsigned char jtagsetup(){
+void jtagsetup(){
   P5DIR|=MOSI+SCK+TMS;
   P5DIR&=~MISO;
   P5OUT|=0xFFFF;