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

drivers: add licence to motor_driver source files

Related to PR #10290, add missing licence to some source files.

Signed-off-by: Gilles DOFFE <g.doffe@gmail.com>
This commit is contained in:
Gilles DOFFE 2019-04-13 00:29:58 +02:00
parent 364499f212
commit 3a83648f2a
2 changed files with 38 additions and 0 deletions

View File

@ -1,3 +1,22 @@
/*
* Copyright (C) 2018 Gilles DOFFE <g.doffe@gmail.com>
*
* 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 drivers_motor
* @{
*
* @file
* @brief High-level driver for DC motors
*
* @author Gilles DOFFE <g.doffe@gmail.com>
* @}
*/
#include <errno.h>
/* RIOT includes */

View File

@ -1,3 +1,22 @@
/*
* Copyright (C) 2018 Gilles DOFFE <g.doffe@gmail.com>
*
* 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 tests
* @{
*
* @file
* @brief High-level driver for DC motors test application
*
* @author Gilles DOFFE <g.doffe@gmail.com>
* @}
*/
#include <stdio.h>
#include <string.h>