X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=projects%2Fmicrob2010%2Fcobboard%2Fmain.h;h=80469eab6c773cab3ed4afc447d487435df45989;hb=HEAD;hp=699a5c190a49c61be61477f94f9ab7ef7b83fb48;hpb=6914527de2ecfef9d790740c71739e7418246b96;p=aversive.git diff --git a/projects/microb2010/cobboard/main.h b/projects/microb2010/cobboard/main.h index 699a5c1..80469ea 100755 --- a/projects/microb2010/cobboard/main.h +++ b/projects/microb2010/cobboard/main.h @@ -19,6 +19,8 @@ * */ +/* was mechboard in 2009 */ + #define LED_TOGGLE(port, bit) do { \ if (port & _BV(bit)) \ port &= ~_BV(bit); \ @@ -30,13 +32,13 @@ #define LED1_OFF() cbi(PORTJ, 2) #define LED1_TOGGLE() LED_TOGGLE(PORTJ, 2) -#define LED2_ON() sbi(PORTL, 7) -#define LED2_OFF() cbi(PORTL, 7) -#define LED2_TOGGLE() LED_TOGGLE(PORTL, 7) +#define LED2_ON() sbi(PORTJ, 3) +#define LED2_OFF() cbi(PORTJ, 3) +#define LED2_TOGGLE() LED_TOGGLE(PORTJ, 3) -#define LED3_ON() sbi(PORTJ, 3) -#define LED3_OFF() cbi(PORTJ, 3) -#define LED3_TOGGLE() LED_TOGGLE(PORTJ, 3) +#define LED3_ON() sbi(PORTL, 7) +#define LED3_OFF() cbi(PORTL, 7) +#define LED3_TOGGLE() LED_TOGGLE(PORTL, 7) #define LED4_ON() sbi(PORTL, 6) #define LED4_OFF() cbi(PORTL, 6) @@ -46,16 +48,16 @@ #define BRAKE_ON() do { PORTJ |= 0xF0; } while(0) #define BRAKE_OFF() do { PORTJ &= 0x0F; } while(0) -#define LEFT_SPICKLE_ENCODER ((void *)0) -#define RIGHT_SPICKLE_ENCODER ((void *)1) +#define RIGHT_SPICKLE_ENCODER ((void *)0) +#define LEFT_SPICKLE_ENCODER ((void *)1) #define SHOVEL_ENCODER ((void *)2) #define SERVO_DOOR_PWM ((void *)&gen.servo2) #define SERVO_CARRY_L_PWM ((void *)&gen.servo1) #define SERVO_CARRY_R_PWM ((void *)&gen.servo3) -#define LEFT_SPICKLE_PWM ((void *)&gen.pwm1_4A) -#define RIGHT_SPICKLE_PWM ((void *)&gen.pwm2_4B) +#define RIGHT_SPICKLE_PWM ((void *)&gen.pwm1_4A) +#define LEFT_SPICKLE_PWM ((void *)&gen.pwm2_4B) #define SHOVEL_PWM ((void *)&gen.pwm3_1A) /** ERROR NUMS */