From ee4933d10b84b756b867168b225e01dbaca698ae Mon Sep 17 00:00:00 2001 From: Jérémy Dufour Date: Wed, 30 Apr 2008 18:25:45 +0200 Subject: * digital/io/src - change the place where the color switch and jack are connected. --- digital/io/src/switch.avr.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/digital/io/src/switch.avr.c b/digital/io/src/switch.avr.c index 47293565..659b597a 100644 --- a/digital/io/src/switch.avr.c +++ b/digital/io/src/switch.avr.c @@ -38,32 +38,32 @@ /** * Color selector switch port. */ -#define SWITCH_COLOR_PORT PORTC +#define SWITCH_COLOR_PORT PORTD /** * Color selector read register port. */ -#define SWITCH_COLOR_PIN PINC +#define SWITCH_COLOR_PIN PIND /** * Color selector switch pin number of the port. */ -#define SWITCH_COLOR_PIN_NUMBER 0 +#define SWITCH_COLOR_PIN_NUMBER 6 /** * Jack switch port. */ -#define SWITCH_JACK_PORT PORTC +#define SWITCH_JACK_PORT PORTD /** * Jack switch read register port. */ -#define SWITCH_JACK_PIN PINC +#define SWITCH_JACK_PIN PIND /** * Jack switch pin number of the port. */ -#define SWITCH_JACK_PIN_NUMBER 1 +#define SWITCH_JACK_PIN_NUMBER 7 /** * Number of iteration of 4.4 ms to have for the filter. -- cgit v1.2.3