From d9702a4ca1fdae000e0cb4d0a8074e8611647e03 Mon Sep 17 00:00:00 2001 From: arighi Date: Thu, 3 Mar 2011 11:35:37 +0000 Subject: [PATCH] ek-lm3s1968: kbd driver depends on the proc module now git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4744 38d2e660-2303-0410-9eaa-f027e97ec537 --- boards/ek-lm3s1968/templates/kernel/main.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/boards/ek-lm3s1968/templates/kernel/main.c b/boards/ek-lm3s1968/templates/kernel/main.c index 13adcb0f..677553ed 100644 --- a/boards/ek-lm3s1968/templates/kernel/main.c +++ b/boards/ek-lm3s1968/templates/kernel/main.c @@ -72,6 +72,11 @@ static void init(void) kdbg_init(); /* Initialize system timer */ timer_init(); + /* + * Kernel initialization: processes (allow to create and dispatch + * processes using proc_new()). + */ + proc_init(); /* Initialize UART1 */ ser_init(&out, SER_UART1); /* Configure UART1 to work at 115.200 bps */ @@ -88,12 +93,6 @@ static void init(void) kbd_init(); /* Initialize the internal flash memory */ flash_init(&flash, 0); - - /* - * Kernel initialization: processes (allow to create and dispatch - * processes using proc_new()). - */ - proc_init(); } static void NORETURN led_process(void) -- 2.25.1