X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Fgoodfet.c;h=8be9a74f403228e9ca672873fc16b28e9844efcb;hp=b8d9e3dbe7940936065d98a0c4bb9b4ccbe5c7ff;hb=278a9487e60fdcf3e96236580f9542c218a8c1f1;hpb=496a0185c0bc88e6ccb768b7ff73055edc3cf4c3 diff --git a/firmware/goodfet.c b/firmware/goodfet.c index b8d9e3d..8be9a74 100644 --- a/firmware/goodfet.c +++ b/firmware/goodfet.c @@ -53,7 +53,7 @@ void init(){ //Setup clocks, unique to each '430. msp430_init_dco(); msp430_init_uart(); - + //DAC should be at full voltage if it exists. #ifdef DAC12IR //glitchvoltages(0xfff,0xfff); @@ -112,7 +112,9 @@ void handle(unsigned char app, case PIC: pichandle(app,verb,len); break; - + case ADC10: + adchandle(app,verb,len); + break; case I2CAPP: i2chandle(app,verb,len); break; @@ -125,6 +127,9 @@ void handle(unsigned char app, case EJTAG: ejtaghandle(app,verb,len); break; + case JTAGXSCALE: + xscalehandle(app,verb,len); + break; case JTAG430: //Also JTAG430X, JTAG430X2 //Revert this when X2 support returns. jtag430x2handle(app,verb,len);