1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

[projects/default]

* added missing transceiver init and start
This commit is contained in:
Oliver Hahm 2011-01-24 15:52:36 +01:00
parent 443a5efbea
commit cb1d4dd041

View File

@ -10,6 +10,7 @@
#include <shell.h>
#include <shell_commands.h>
#include <board_uart0.h>
#include <transceiver.h>
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!");