* added missing transceiver init and start
@ -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!");