1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

copyright header

This commit is contained in:
Ludwig Ortmann 2013-03-06 10:48:14 +01:00
parent 9a21ba09c3
commit fbb33c3b8d
3 changed files with 45 additions and 0 deletions

View File

@ -1,3 +1,18 @@
/**
* Native Board config.h implementation
*
* Copyright (C) 2013 Ludwig Ortmann
*
* This file subject to the terms and conditions of the GNU General Public
* License. See the file LICENSE in the top level directory for more details.
*
* @ingroup native
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
* @}
*/
#include <stdio.h>
#include <stdint.h>

View File

@ -1,3 +1,18 @@
/**
* Native Board board_init implementation
*
* Copyright (C) 2013 Ludwig Ortmann
*
* This file subject to the terms and conditions of the GNU General Public
* License. See the file LICENSE in the top level directory for more details.
*
* @ingroup native
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
* @}
*/
void board_init()
{
puts("RIOT native board initialized.");

View File

@ -1,3 +1,18 @@
/**
* Native Board ltc4150_arch.h implementation
*
* Copyright (C) 2013 Ludwig Ortmann
*
* This file subject to the terms and conditions of the GNU General Public
* License. See the file LICENSE in the top level directory for more details.
*
* @ingroup native
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
* @}
*/
#include <stdio.h>
#include <signal.h>
#include <time.h>