MSP430 JTAG works.
[goodfet] / firmware / lib / command.c
index 44a853d..9a9421d 100644 (file)
@@ -19,5 +19,5 @@ void txdata(unsigned char app,
 //! Delay for a count.
 void delay(unsigned int count){
   volatile unsigned int i=count;
 //! Delay for a count.
 void delay(unsigned int count){
   volatile unsigned int i=count;
-  while(i--);
+  while(i--) asm("nop");
 }
 }