Merge pull request #618 from mehlis/test-license

added LGPL header and doxygen headers
This commit is contained in:
Christian Mehlis 2014-02-04 04:25:04 -08:00
commit 64c46b0a9f
15 changed files with 239 additions and 17 deletions

View File

@ -1,11 +1,23 @@
/* /*
* Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de> * 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 tests
* @{
*
* @file
* @brief Bloom filter test application
*
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

View File

@ -1,11 +1,23 @@
/* /*
* Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de> * 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 tests
* @{
*
* @file
* @brief Bloom filter test application
*
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <inttypes.h> #include <inttypes.h>

View File

@ -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 tests
* @{
*
* @file
* @brief Float test application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include <board.h> #include <board.h>
#include <math.h> #include <math.h>

View File

@ -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 tests
* @{
*
* @file
* @brief Hwtimer test application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include "hwtimer.h" #include "hwtimer.h"

View File

@ -1,11 +1,23 @@
/* /*
* 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 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 tests
* @{
*
* @file
* @brief Hwtimer test application
*
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include <limits.h> #include <limits.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,5 +1,21 @@
/* /*
* Copyright (C) 2013 Ludwig Ortmann <ludwig.ortmann@fu-berlin.de> * Copyright (C) 2013 Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
*
* 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 tests
* @{
*
* @file
* @brief IRQ test application
*
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
*
* @}
*/ */
#include <stdio.h> #include <stdio.h>

View File

@ -1,5 +1,21 @@
/* /*
* Copyright (C) 2013 Oliver Hahm <oliver.hahm@inria.fr> * 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 tests
* @{
*
* @file
* @brief Nativenet test application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/ */
#include <stdio.h> #include <stdio.h>

View File

@ -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 tests
* @{
*
* @file
* @brief PNet test application
*
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
*
* @}
*/
#include <errno.h> #include <errno.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -2,11 +2,24 @@
* Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de> * Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de>
* Copyright (C) 2013 René Kijewski <rene.kijewski@fu-berlin.de> * Copyright (C) 2013 René Kijewski <rene.kijewski@fu-berlin.de>
* *
* 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 tests
* @{
*
* @file
* @brief Semaphore test application
*
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
* @author René Kijewski <rene.kijewski@fu-berlin.de>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include "thread.h" #include "thread.h"

View File

@ -1,11 +1,23 @@
/* /*
* Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de> * Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de>
* *
* 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 tests
* @{
*
* @file
* @brief SHA256 test application
*
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
*
* @}
*/
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

View File

@ -1,25 +1,21 @@
/* /*
* main.c - Main function of the test_shell project.
* Copyright (C) 2013 Kaspar Schleiser <kaspar@schleiser.de> * Copyright (C) 2013 Kaspar Schleiser <kaspar@schleiser.de>
* Copyright (C) 2013 Freie Universität Berlin
* *
* This source code is licensed under the LGPLv2 license, * This file is subject to the terms and conditions of the GNU Lesser General
* See the file LICENSE for more details. * Public License. See the file LICENSE in the top level directory for more
* * details.
*/ */
/** /**
* @file * @file
* @internal
* @brief shows how to set up own and use the system shell commands. * @brief shows how to set up own and use the system shell commands.
* By typing help in the serial console, all the supported commands * By typing help in the serial console, all the supported commands
* are listed. * are listed.
* *
* @author Freie Universität Berlin, Computer Systems & Telematics
* @author Kaspar Schleiser <kaspar@schleiser.de> * @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Zakaria Kasmi <zkasmi@inf.fu-berlin.de> * @author Zakaria Kasmi <zkasmi@inf.fu-berlin.de>
* @version $Revision: 3855 $
* *
* @note $Id: main.c 3855 2013-09-04 17:00:33 kasmi $
*/ */
#include <stdio.h> #include <stdio.h>

View File

@ -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 tests
* @{
*
* @file
* @brief Thread test application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include <thread.h> #include <thread.h>
#include <flags.h> #include <flags.h>

View File

@ -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 tests
* @{
*
* @file
* @brief Thread test application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include "thread.h" #include "thread.h"

View File

@ -1,11 +1,23 @@
/* /*
* Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de> * Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de>
* *
* 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 tests
* @{
*
* @file
* @brief Thread test application
*
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include "thread.h" #include "thread.h"

View File

@ -1,3 +1,24 @@
/*
* 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 tests
* @{
*
* @file
* @brief Thread test application
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
*
* @}
*/
#include <stdio.h> #include <stdio.h>
#include <time.h> #include <time.h>