]> git.donarmstrong.com Git - kiibohd-controller.git/blobdiff - main.c
Another typo...
[kiibohd-controller.git] / main.c
diff --git a/main.c b/main.c
index 13fde65a438e5440d352c7a384995d474a8d6d07..fec612cd1f4a70187d0ecf79454cdd75a8fdde08 100644 (file)
--- a/main.c
+++ b/main.c
@@ -146,7 +146,7 @@ int main(void)
        // Setup Modules
        Output_setup();
        Macro_setup();
-       //scan_setup();
+       Scan_setup();
 
        // Setup ISR Timer for flagging a kepress send to USB
        usbTimerSetup();
@@ -160,7 +160,7 @@ int main(void)
                // Acquire Key Indices
                // Loop continuously until scan_loop returns 0
                cli();
-               //while ( scan_loop() );
+               while ( Scan_loop() );
                sei();
 
                // Run Macros over Key Indices and convert to USB Keys
@@ -184,7 +184,7 @@ int main(void)
 // USB Keyboard Data Send Counter Interrupt
 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
 ISR( TIMER0_OVF_vect )
-#elif defined(_mk20dx128_) // ARM
+#elif defined(_mk20dx128_) || defined(_mk20dx256_) // ARM
 void pit0_isr(void)
 #endif
 {