From cdea4f5da56c6158beccc801f0a4efa045cf46cb Mon Sep 17 00:00:00 2001 From: root Date: Sun, 7 Jun 2015 02:35:01 +0100 Subject: tidy up makefiles and fix init delay --- app/tims_keyboard.c | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'app/tims_keyboard.c') diff --git a/app/tims_keyboard.c b/app/tims_keyboard.c index c3c947b..4897c4d 100644 --- a/app/tims_keyboard.c +++ b/app/tims_keyboard.c @@ -27,19 +27,33 @@ main (void) nvic_set_priority (NVIC_EXTI0_IRQ, 0xc0); usart_init (); - ticker_init (); #ifdef DEBUG - printf ("Hello world!\r\n"); + printf ("USART and ticker started\r\n"); +#endif + + usb_init (); + +#ifdef DEBUG + printf ("USB started\r\n"); #endif atkbd_init (); - usb_init (); +#ifdef DEBUG + printf ("ATKBD i/f started\r\n"); +#endif + while (ticks < AT_KBD_INIT_TIME) + usb_poll (); - usb_run (); + atkbd_start (); +#ifdef DEBUG + printf ("Keyboard started\r\n"); +#endif + + usb_run (); return 0; } -- cgit v1.2.3