1
0
Fork 0
This commit is contained in:
Jack Humbert 2015-01-13 18:05:37 -05:00
parent 98f486a633
commit 2e0d872ab7
7 changed files with 92 additions and 61 deletions

View file

@ -104,17 +104,6 @@ uint8_t matrix_scan(void)
}
}
// uint8_t layer = biton32(default_layer_state);
switch (default_layer_state) {
case 1:
DDRF &= ~(1<<0);
PORTF &= ~(1<<0);
break;
case 2:
DDRF |= (1<<0);
PORTF |= (1<<0);
break;
}
return 1;
}