Obrnjen vrstni red stolpcev in vrstic
parent
6783b4c82b
commit
2677f31028
|
@ -16,10 +16,10 @@ void matrix_init_kb(void) {
|
||||||
// unused pins - C7, D4, D5, D7, E6
|
// unused pins - C7, D4, D5, D7, E6
|
||||||
// set as input with internal pull-up enabled
|
// set as input with internal pull-up enabled
|
||||||
DDRC &= ~(1<<7);
|
DDRC &= ~(1<<7);
|
||||||
DDRD &= ~(1<<5 | 1<<4);
|
DDRD &= ~(1<<5);
|
||||||
DDRE &= ~(1<<6);
|
DDRE &= ~(1<<6);
|
||||||
PORTC |= (1<<7);
|
PORTC |= (1<<7);
|
||||||
PORTD |= (1<<5 | 1<<4);
|
PORTD |= (1<<5);
|
||||||
PORTE |= (1<<6);
|
PORTE |= (1<<6);
|
||||||
|
|
||||||
matrix_init_user();
|
matrix_init_user();
|
||||||
|
|
|
@ -274,19 +274,13 @@ static void init_cols(void)
|
||||||
//PORTF |= (1<<7 | 1<<6 | 1<<5 | 1<<4 | 1<<1 | 1<<0);
|
//PORTF |= (1<<7 | 1<<6 | 1<<5 | 1<<4 | 1<<1 | 1<<0);
|
||||||
// Cist mimo
|
// Cist mimo
|
||||||
|
|
||||||
DDRB &= ~(1<<5 | 1<<4);
|
DDRB &= ~(1<<6 | 1<<3 | 1<<2 | 1<<1 );
|
||||||
PORTB |= (1<<5 | 1<<4);
|
PORTB |= (1<<6 | 1<<3 | 1<<2 | 1<<1 );
|
||||||
// Evo to je ze boljse
|
// Evo to je ze boljse
|
||||||
|
|
||||||
DDRE &= ~(1<<6);
|
DDRF &= ~(1<<6 | 1<<7);
|
||||||
PORTE |= (1<<6);
|
PORTF |= (1<<6 | 1<<7);
|
||||||
|
|
||||||
DDRD &= ~(1<<4 | 1<<7);
|
|
||||||
PORTD |= (1<<4 | 1<<7);
|
|
||||||
|
|
||||||
|
|
||||||
DDRC &= ~(1<<6);
|
|
||||||
PORTC |= (1<<6);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static matrix_row_t read_cols(uint8_t row)
|
static matrix_row_t read_cols(uint8_t row)
|
||||||
|
@ -315,17 +309,29 @@ static matrix_row_t read_cols(uint8_t row)
|
||||||
(PINF&(1<<5) ? 0 : (1<<3)) |
|
(PINF&(1<<5) ? 0 : (1<<3)) |
|
||||||
(PINF&(1<<6) ? 0 : (1<<4)) |
|
(PINF&(1<<6) ? 0 : (1<<4)) |
|
||||||
(PINF&(1<<7) ? 0 : (1<<5)) ;
|
(PINF&(1<<7) ? 0 : (1<<5)) ;
|
||||||
|
|
||||||
|
(PINB&(1<<6) ? 0 : (1<<0)) |
|
||||||
|
(PINB&(1<<2) ? 0 : (1<<1)) |
|
||||||
|
(PINB&(1<<3) ? 0 : (1<<2)) |
|
||||||
|
(PINB&(1<<1) ? 0 : (1<<3)) |
|
||||||
|
(PINF&(1<<7) ? 0 : (1<<4)) |
|
||||||
|
(PINF&(1<<6) ? 0 : (1<<5)) ;
|
||||||
*/
|
*/
|
||||||
(PINB&(1<<5) ? 0 : (1<<0)) |
|
(PINB&(1<<6) ? 0 : (1<<5)) |
|
||||||
(PINB&(1<<4) ? 0 : (1<<1)) |
|
(PINB&(1<<2) ? 0 : (1<<4)) |
|
||||||
(PINE&(1<<6) ? 0 : (1<<2)) |
|
(PINB&(1<<3) ? 0 : (1<<3)) |
|
||||||
(PIND&(1<<7) ? 0 : (1<<3)) |
|
(PINB&(1<<1) ? 0 : (1<<2)) |
|
||||||
(PINC&(1<<6) ? 0 : (1<<4)) |
|
(PINF&(1<<7) ? 0 : (1<<1)) |
|
||||||
(PIND&(1<<4) ? 0 : (1<<5)) ;
|
(PINF&(1<<6) ? 0 : (1<<0)) ;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Row pin configuration
|
/* Row pin configuration
|
||||||
|
*
|
||||||
|
* Micro Pro
|
||||||
|
* row: 6 7 8 9 10 11
|
||||||
|
* pin: B5 F4 E6 D7 C6 D4
|
||||||
*
|
*
|
||||||
* Teensy
|
* Teensy
|
||||||
* row: 6 7 8 9 10 11
|
* row: 6 7 8 9 10 11
|
||||||
|
@ -359,11 +365,20 @@ static void unselect_rows(void)
|
||||||
DDRC &= ~(1<<6);
|
DDRC &= ~(1<<6);
|
||||||
PORTC &= ~(1<<6);
|
PORTC &= ~(1<<6);
|
||||||
*/
|
*/
|
||||||
DDRB &= ~(1<<1 | 1<<2 | 1<<3 | 1<<6);
|
DDRB &= ~(1<<5);
|
||||||
PORTB &= ~(1<<1 | 1<<2 | 1<<3 | 1<<6);
|
PORTB &= ~(1<<5);
|
||||||
|
|
||||||
DDRF &= ~(1<<7 | 1<<6);
|
DDRC &= ~(1<<6);
|
||||||
PORTF &= ~(1<<7 | 1<<6);
|
PORTC &= ~(1<<6);
|
||||||
|
|
||||||
|
DDRD &= ~(1<<4 | 1<<7);
|
||||||
|
PORTD &= ~(1<<4 | 1<<7);
|
||||||
|
|
||||||
|
DDRE &= ~(1<<6);
|
||||||
|
PORTE &= ~(1<<6);
|
||||||
|
|
||||||
|
DDRF &= ~(1<<4);
|
||||||
|
PORTF &= ~(1<<4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Row pin configuration
|
/* Row pin configuration
|
||||||
|
@ -395,29 +410,29 @@ static void select_row(uint8_t row)
|
||||||
// select on teensy
|
// select on teensy
|
||||||
// Output low(DDR:1, PORT:0) to select
|
// Output low(DDR:1, PORT:0) to select
|
||||||
switch (row) {
|
switch (row) {
|
||||||
case 6:
|
case 11:
|
||||||
DDRB |= (1<<6);
|
DDRB |= (1<<5);
|
||||||
PORTB &= ~(1<<6);
|
PORTB &= ~(1<<5);
|
||||||
break;
|
|
||||||
case 7:
|
|
||||||
DDRB |= (1<<2);
|
|
||||||
PORTB &= ~(1<<2);
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
DDRB |= (1<<3);
|
|
||||||
PORTB &= ~(1<<3);
|
|
||||||
break;
|
|
||||||
case 9:
|
|
||||||
DDRB |= (1<<1);
|
|
||||||
PORTB &= ~(1<<1);
|
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
DDRF |= (1<<7);
|
DDRF |= (1<<4);
|
||||||
PORTF &= ~(1<<7);
|
PORTF &= ~(1<<4);
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 9:
|
||||||
DDRF |= (1<<6);
|
DDRE |= (1<<6);
|
||||||
PORTF &= ~(1<<6);
|
PORTE &= ~(1<<6);
|
||||||
|
break;
|
||||||
|
case 8:
|
||||||
|
DDRD |= (1<<7);
|
||||||
|
PORTD &= ~(1<<7);
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
DDRC |= (1<<6);
|
||||||
|
PORTC &= ~(1<<6);
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
DDRD |= (1<<4);
|
||||||
|
PORTD &= ~(1<<4);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue