mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
63 lines
1.1 KiB
C
63 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License v2.1. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Test application for OpenWSN pkg
|
|
*
|
|
* @author Thomas Eichinger <thomas.eichinger@fu-berlin.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "vtimer.h"
|
|
#include "shell.h"
|
|
#include "posix_io.h"
|
|
#include "03oos_openwsn.h"
|
|
#include "board_uart0.h"
|
|
#include "riot.h"
|
|
|
|
|
|
const shell_command_t shell_commands[] = {
|
|
{"owsn_init", "Start OpenWSN", openwsn_start_thread},
|
|
{NULL, NULL, NULL}
|
|
};
|
|
|
|
static int shell_readc(void)
|
|
{
|
|
char c = 0;
|
|
(void) posix_read(uart0_handler_pid, &c, 1);
|
|
return c;
|
|
}
|
|
|
|
static int shell_putchar(int c)
|
|
{
|
|
(void) putchar(c);
|
|
|
|
return c;
|
|
}
|
|
|
|
int main(void) {
|
|
shell_t shell;
|
|
|
|
(void) posix_open(uart0_handler_pid, 0);
|
|
|
|
puts("Welcome to RIOT!");
|
|
|
|
shell_init(&shell, shell_commands, UART0_BUFSIZE, shell_readc, shell_putchar);
|
|
|
|
shell_run(&shell);
|
|
|
|
return 0;
|
|
}
|