added LGPL header and doxygen headers
This commit is contained in:
parent
fb423e2c48
commit
341b095acf
@ -1,16 +1,21 @@
|
|||||||
/**
|
/*
|
||||||
* RIOT CCN SHELL
|
|
||||||
*
|
|
||||||
* Copyright (C) 2013 Freie Universität Berlin
|
* Copyright (C) 2013 Freie Universität Berlin
|
||||||
*
|
*
|
||||||
* This file subject to the terms and conditions of the GNU Lesser General
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||||
* Public License. See the file LICENSE in the top level directory for more
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
* details.
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
*
|
*
|
||||||
* \{
|
* @file
|
||||||
* \file riot_ccn.c
|
* @brief CCN Lite interactive shell example application
|
||||||
* \author Christian Mehlis <mehlis@inf.fu-berlin.de>
|
*
|
||||||
* \}
|
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
@ -1,16 +1,21 @@
|
|||||||
/**
|
/*
|
||||||
* RIOT CCN MAIN APP
|
|
||||||
*
|
|
||||||
* Copyright (C) 2013 Freie Universität Berlin
|
* Copyright (C) 2013 Freie Universität Berlin
|
||||||
*
|
*
|
||||||
* This file subject to the terms and conditions of the GNU Lesser General
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||||
* Public License. See the file LICENSE in the top level directory for more
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
* details.
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
*
|
*
|
||||||
* \{
|
* @file
|
||||||
* \file main.c
|
* @brief CCN Lite relay example application
|
||||||
* \author Christian Mehlis <mehlis@inf.fu-berlin.de>
|
*
|
||||||
* \}
|
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// system
|
// system
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2008, 2009, 2010 Kaspar Schleiser <kaspar@schleiser.de>
|
* Copyright (C) 2008, 2009, 2010 Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
* Copyright (C) 2013 INRIA
|
||||||
* Copyright (C) 2013 Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
|
* Copyright (C) 2013 Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
|
||||||
*
|
*
|
||||||
* This file subject to the terms and conditions of the GNU Lesser General
|
* This file subject to the terms and conditions of the GNU Lesser General
|
||||||
@ -7,6 +8,20 @@
|
|||||||
* details.
|
* details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief Default application that shows a lot of functionality of RIOT
|
||||||
|
*
|
||||||
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
||||||
|
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 Freie Universität Berlin
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||||
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief Hello World application
|
||||||
|
*
|
||||||
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
|
|||||||
@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 Freie Universität Berlin
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||||
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief IPC pingpong application
|
||||||
|
*
|
||||||
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <thread.h>
|
#include <thread.h>
|
||||||
#include <msg.h>
|
#include <msg.h>
|
||||||
|
|||||||
@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 INRIA
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||||
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief UDP RPL example application
|
||||||
|
*
|
||||||
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "posix_io.h"
|
#include "posix_io.h"
|
||||||
|
|||||||
@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 INRIA
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||||
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief UDP RPL example application
|
||||||
|
*
|
||||||
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "vtimer.h"
|
#include "vtimer.h"
|
||||||
|
|||||||
@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 INRIA
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
||||||
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup examples
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief UDP RPL example application
|
||||||
|
*
|
||||||
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
||||||
|
*
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user