Minor additions to dsPIC33F/PIC24H programmer:
[goodfet] / firmware / goodfet.c
index 11afcdd..f82c5b3 100644 (file)
@@ -75,6 +75,11 @@ void handle(unsigned char app,
   case AVR:
     avrhandle(app,verb,len);
     break;
+#ifdef INSTALL_PIC_APP
+  case PIC:
+    pichandle(app,verb,len);
+    break;
+#endif
   case I2CAPP:
     i2chandle(app,verb,len);
     break;
@@ -93,6 +98,9 @@ void handle(unsigned char app,
   case SMARTCARD:
     smartcardhandle(app,verb,len);
     break;
+  case JTAGARM7TDMI:
+    jtagarm7tdmihandle(app,verb,len);
+    break;
   default:
     if(pluginhandle){
       pluginhandle(app,verb,len);
@@ -155,7 +163,7 @@ int main(void)
       handle(app,verb,len);
     }else{
       //Listen to the blaberring.
-      for(i-0;i<len;i++)
+      for(i=0;i<len;i++)
        serial_rx();
       //Reply with an error.
       debugstr("Buffer length exceeded.");