From 6629a7d77502d721b2e85bacadf36c2b0800d77d Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Thu, 30 Jan 2020 08:08:26 +0100 Subject: [PATCH] [IWatchdog library] Add license Fixes #899 Signed-off-by: Frederic Pillon --- libraries/IWatchdog/src/IWatchdog.cpp | 19 +++++++++++++++++++ libraries/IWatchdog/src/IWatchdog.h | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/libraries/IWatchdog/src/IWatchdog.cpp b/libraries/IWatchdog/src/IWatchdog.cpp index b982b49201..02aca8db67 100644 --- a/libraries/IWatchdog/src/IWatchdog.cpp +++ b/libraries/IWatchdog/src/IWatchdog.cpp @@ -1,3 +1,22 @@ +/* + Copyright (c) 2018 Frederic Pillon for + STMicroelectronics. All right reserved. + Copyright (c) 2018 Venelin Efremov + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "IWatchdog.h" #include "stm32yyxx_ll_iwdg.h" #include "stm32yyxx_ll_rcc.h" diff --git a/libraries/IWatchdog/src/IWatchdog.h b/libraries/IWatchdog/src/IWatchdog.h index d03a2e502c..2e98b7813e 100644 --- a/libraries/IWatchdog/src/IWatchdog.h +++ b/libraries/IWatchdog/src/IWatchdog.h @@ -1,3 +1,22 @@ +/* + Copyright (c) 2018 Frederic Pillon for + STMicroelectronics. All right reserved. + Copyright (c) 2018 Venelin Efremov + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef __IWATCHDOG_H__ #define __IWATCHDOG_H__