X-Git-Url: http://git.droids-corp.org/?p=protos%2Fxbee-avr.git;a=blobdiff_plain;f=main.h;h=617628e922ac47f1659a15dbc24f620bf25683a0;hp=4ed5259d85bac22aa1612f23ab51e925434a585e;hb=a4e51d8b2a5b13308d314aaf72e58672346dfb1f;hpb=701d7cbf7d30c49e1d21943ce47d00bf250c70e7 diff --git a/main.h b/main.h index 4ed5259..617628e 100644 --- a/main.h +++ b/main.h @@ -30,17 +30,14 @@ /** ERROR NUMS */ #define E_USER_DEFAULT 194 -#define LED1_ON() sbi(PORTE, 2) -#define LED1_OFF() cbi(PORTE, 2) +#define LED1_ON() sbi(PORTA, 2) +#define LED1_OFF() cbi(PORTA, 2) -#define LED2_ON() sbi(PORTE, 3) -#define LED2_OFF() cbi(PORTE, 3) +#define LED2_ON() sbi(PORTA, 1) +#define LED2_OFF() cbi(PORTA, 1) -#define LED3_ON() sbi(PORTB, 3) -#define LED3_OFF() cbi(PORTB, 3) - -#define LED4_ON() sbi(PORTB, 4) -#define LED4_OFF() cbi(PORTB, 4) +#define LED3_ON() sbi(PORTA, 0) +#define LED3_OFF() cbi(PORTA, 0) #define LED_PRIO 170 #define TIME_PRIO 160