2014-02-03 22:47:31 +01:00
|
|
|
/*
|
2014-04-03 18:29:04 +02:00
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
2014-02-03 22:47:31 +01:00
|
|
|
*
|
2014-07-31 19:45:27 +02:00
|
|
|
* 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.
|
2014-02-03 22:47:31 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup examples
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Hello World application
|
|
|
|
*
|
|
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
2015-09-27 18:58:30 +02:00
|
|
|
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
2014-02-03 22:47:31 +01:00
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2014-01-06 10:10:47 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2014-04-03 18:29:04 +02:00
|
|
|
puts("Hello World!");
|
2014-08-01 02:33:22 +02:00
|
|
|
|
|
|
|
printf("You are running RIOT on a(n) %s board.\n", RIOT_BOARD);
|
2024-02-16 20:38:25 +01:00
|
|
|
printf("This board features a(n) %s CPU.\n", RIOT_CPU);
|
2014-08-01 02:33:22 +02:00
|
|
|
|
2014-04-03 18:29:04 +02:00
|
|
|
return 0;
|
2014-01-06 10:10:47 +01:00
|
|
|
}
|