From d2c5a3dad0d6406149516e3facbf57ac46846269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20Podgor=C5=A1ek?= Date: Fri, 13 Apr 2018 20:02:23 +0200 Subject: [PATCH] =?UTF-8?q?Pod-zabljena=20pi=C4=8Dja?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- keyboards/handwired/daktil/matrix.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/keyboards/handwired/daktil/matrix.c b/keyboards/handwired/daktil/matrix.c index 7a8ef8f64e..fa7d69ccca 100644 --- a/keyboards/handwired/daktil/matrix.c +++ b/keyboards/handwired/daktil/matrix.c @@ -274,19 +274,19 @@ static void init_cols(void) //PORTF |= (1<<7 | 1<<6 | 1<<5 | 1<<4 | 1<<1 | 1<<0); // Cist mimo - DDRB &= ~(1<<5 | 1<<4) - PORTB |= (1<<5 | 1<<4) + DDRB &= ~(1<<5 | 1<<4); + PORTB |= (1<<5 | 1<<4); // Evo to je ze boljse - DDRE &= ~(1<<6) - PORTE |= (1<<6) + DDRE &= ~(1<<6); + PORTE |= (1<<6); - DDRD &= ~(1<<4 | 1<<7) - PORTD |= (1<<4 | 1<<7) + DDRD &= ~(1<<4 | 1<<7); + PORTD |= (1<<4 | 1<<7); - DDRC &= ~(1<<6) - PORTC |= (1<<6) + DDRC &= ~(1<<6); + PORTC |= (1<<6); } static matrix_row_t read_cols(uint8_t row)