From 7c70d3bc4ff684c71afe065138bcead91d916cba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Mon, 4 Jul 2016 21:14:13 +0200 Subject: [PATCH] xtimer: Add Eistec copyright and author --- sys/include/xtimer.h | 5 +++-- sys/xtimer/xtimer.c | 8 ++++++-- sys/xtimer/xtimer_core.c | 2 ++ 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/sys/include/xtimer.h b/sys/include/xtimer.h index 9746450b91..f0de04a71c 100644 --- a/sys/include/xtimer.h +++ b/sys/include/xtimer.h @@ -1,5 +1,6 @@ /* * Copyright (C) 2015 Kaspar Schleiser + * Copyright (C) 2016 Eistec AB * * 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 @@ -13,8 +14,7 @@ * timers, get current system time, and let a thread sleep for * a certain amount of time. * - * The implementation takes one low-level timer that is supposed to run at 1MHz - * speed and multiplexes it. + * The implementation takes one low-level timer and multiplexes it. * * Insertion and removal of timers has O(n) complexity with (n) being the * number of active timers. The reason for this is that multiplexing is @@ -24,6 +24,7 @@ * @file * @brief xtimer interface definitions * @author Kaspar Schleiser + * @author Joakim Nohlgård */ #ifndef XTIMER_H #define XTIMER_H diff --git a/sys/xtimer/xtimer.c b/sys/xtimer/xtimer.c index 0271ef294c..87036dbdea 100644 --- a/sys/xtimer/xtimer.c +++ b/sys/xtimer/xtimer.c @@ -1,15 +1,19 @@ -/** +/* * Copyright (C) 2015 Kaspar Schleiser + * Copyright (C) 2016 Eistec AB * * 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 xtimer * @{ * @file * @brief xtimer convenience functionality * @author Kaspar Schleiser + * @author Joakim Nohlgård * @} */ diff --git a/sys/xtimer/xtimer_core.c b/sys/xtimer/xtimer_core.c index f87d192b81..b4aed4f56e 100644 --- a/sys/xtimer/xtimer_core.c +++ b/sys/xtimer/xtimer_core.c @@ -1,5 +1,6 @@ /** * Copyright (C) 2015 Kaspar Schleiser + * Copyright (C) 2016 Eistec AB * * 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 @@ -10,6 +11,7 @@ * @file * @brief xtimer core functionality * @author Kaspar Schleiser + * @author Joakim Nohlgård * @} */