X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Fgoodfet.c;h=acf6772644e034d498fa4ff5a2475f7ae1685e4a;hp=592c3bf374ef6c8968fa825575ffc3d20d2b6012;hb=b3867f4248b4258ba1c1d75b96e4da35a6064e92;hpb=0351243d52f70e34790269e600c65413ddb4bc7c diff --git a/firmware/goodfet.c b/firmware/goodfet.c index 592c3bf..acf6772 100644 --- a/firmware/goodfet.c +++ b/firmware/goodfet.c @@ -40,9 +40,10 @@ void init(){ may have trouble communicating with the client. The latter likely relates to the FTDI on-chip 3V3 regulator being specified up to only 50 mA. */ - P5DIR |= BIT0; - P5REN &= ~BIT0; - P5OUT &= ~BIT0; + + P5DIR |= BIT0; + //P5REN &= ~BIT0; //DO NOT UNCOMMENT. Breaks GF1x support. + P5OUT &= ~BIT0; //Setup clocks, unique to each '430. msp430_init_dco(); @@ -97,6 +98,9 @@ void handle(unsigned char app, case NRF: nrfhandle(app,verb,len); break; + case CCSPI: + ccspihandle(app,verb,len); + break; case AVR: avrhandle(app,verb,len); break;