From cb1d4dd041aa8d066a6ade1e5a628caf20bb8238 Mon Sep 17 00:00:00 2001 From: Oliver Hahm Date: Mon, 24 Jan 2011 15:52:36 +0100 Subject: [PATCH] [projects/default] * added missing transceiver init and start --- projects/default/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/default/main.c b/projects/default/main.c index 959c694616..06c8a16e7e 100644 --- a/projects/default/main.c +++ b/projects/default/main.c @@ -10,6 +10,7 @@ #include #include #include +#include int shell_readc() { char c = 0; @@ -24,6 +25,8 @@ void shell_putchar(int c) { int main(void) { posix_open(uart0_handler_pid, 0); ltc4150_start(); + transceiver_init(TRANSCEIVER_CC1100); + transceiver_start(); puts("Welcome to ukleos!");