X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=firmware%2Fplatforms%2Ftelosb.h;h=51c07224cfd409a8546a7b6ccc34a97aae203f5d;hb=c2f96e2641f1cc8c2bc900c01432232c55568c72;hp=98b94bc0e0957a02d318ee4a686a9af5052e36a4;hpb=7e6e8190a7e53a87bf4335ab2f05443d3e064ee4;p=goodfet diff --git a/firmware/platforms/telosb.h b/firmware/platforms/telosb.h index 98b94bc..51c0722 100644 --- a/firmware/platforms/telosb.h +++ b/firmware/platforms/telosb.h @@ -12,10 +12,18 @@ #include #endif -//LED on P5.4 +//LED on P5.4 (LED1 red) #define PLEDOUT P5OUT #define PLEDDIR P5DIR #define PLEDPIN BIT4 +//LED on P5.5 (LED2 green) +#define PLED2OUT P5OUT +#define PLED2DIR P5DIR +#define PLED2PIN BIT5 +//LED on P5.6 (LED3 blue) +#define PLED3OUT P5OUT +#define PLED3DIR P5DIR +#define PLED3PIN BIT6 #define SPIOUT P3OUT @@ -49,7 +57,6 @@ #define CLRSS P4OUT&=~BIT2 #define DIRSS P4DIR|=BIT2 - //Flash CS is P4.4, redefine only for the SPI app. #ifdef SPIAPPLICATION #undef SETSS @@ -65,6 +72,18 @@ #define CLRCE P4OUT&=~BIT6 #define DIRCE P4DIR|=BIT6 +//CC2420 signals +#define SFD (P4IN&BIT1) +#define FIFOP (P1IN&BIT0) +#define FIFO (P1IN&BIT3) + +//GPIO Expansion Pins +#define GIO0 (P2OUT&BIT0) +#define GIO0HIGH P2OUT|=BIT0 +#define GIO0LOW P2OUT&=~BIT0 +#define GIO0OUT P2OUT +#define GIO0DIR P2DIR +#define GIO0PIN BIT0 // network byte order converters #define htons(x) ((((uint16_t)(x) & 0xFF00) >> 8) | \