@@ -58,10 +58,7 @@ mod kb {
58
58
matrix:: { BasicVerticalSwitchMatrix , Scanner } ,
59
59
processor:: {
60
60
events:: rgb:: { FrameIterator , RGBMatrix , RGBProcessor } ,
61
- input:: {
62
- debounce:: KeyMatrixRisingFallingDebounceProcessor ,
63
- flip:: { ConcurrentFlipProcessor , Pos } ,
64
- } ,
61
+ input:: debounce:: KeyMatrixRisingFallingDebounceProcessor ,
65
62
mapper:: { Input , Mapper } ,
66
63
Event , EventsProcessor , InputProcessor ,
67
64
} ,
@@ -312,10 +309,9 @@ mod kb {
312
309
let input_processors: & mut [ & mut dyn InputProcessor <
313
310
{ <Keyboard as KeyboardConfiguration >:: KEY_MATRIX_ROW_COUNT } ,
314
311
{ <Keyboard as KeyboardConfiguration >:: KEY_MATRIX_COL_COUNT } ,
315
- > ] = & mut [
316
- & mut KeyMatrixRisingFallingDebounceProcessor :: new ( 10 . millis ( ) ) ,
317
- & mut ConcurrentFlipProcessor :: new ( Pos { row : 2 , col : 1 } , Pos { row : 2 , col : 3 } ) ,
318
- ] ;
312
+ > ] = & mut [ & mut KeyMatrixRisingFallingDebounceProcessor :: new (
313
+ 10 . millis ( ) ,
314
+ ) ] ;
319
315
let mut mapper = Mapper :: new ( <Keyboard as KeyboardConfiguration >:: get_input_map ( ) ) ;
320
316
let events_processors: & mut [ & mut dyn EventsProcessor <
321
317
<Keyboard as KeyboardConfiguration >:: Layer ,
0 commit comments