From 16a583d7fd057c3ebcb859db44f097fd8073ec49 Mon Sep 17 00:00:00 2001 From: tmk Date: Sat, 27 Oct 2012 03:07:37 +0900 Subject: Fix usage of debug flag --- protocol/pjrc/main.c | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'protocol/pjrc') diff --git a/protocol/pjrc/main.c b/protocol/pjrc/main.c index e0f600fe7c..9f664bc432 100644 --- a/protocol/pjrc/main.c +++ b/protocol/pjrc/main.c @@ -57,33 +57,6 @@ int main(void) while (!usb_configured()) /* wait */ ; keyboard_init(); - matrix_scan(); - if (matrix_key_count() >= 3) { -#ifdef DEBUG_LED - for (int i = 0; i < 6; i++) { - DEBUG_LED_CONFIG; - DEBUG_LED_ON; - _delay_ms(500); - DEBUG_LED_OFF; - _delay_ms(500); - } -#else - _delay_ms(5000); -#endif - print_enable = true; - debug_enable = true; - debug_matrix = true; - debug_keyboard = true; - debug_mouse = true; - print("debug enabled.\n"); - } - if (matrix_key_count() >= 4) { - print("jump to bootloader...\n"); - _delay_ms(1000); - bootloader_jump(); // not return - } - - host_set_driver(pjrc_driver()); while (1) { keyboard_task(); -- cgit v1.2.3