From 9fddf194bf7bdf7f7725bc949a56a7e31370d564 Mon Sep 17 00:00:00 2001 From: Develo Date: Wed, 14 Oct 2020 16:45:05 -0300 Subject: [PATCH 1/2] Add Copyright notice to Schedule.h --- cores/esp8266/Schedule.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/cores/esp8266/Schedule.h b/cores/esp8266/Schedule.h index 48111c33ed..da86e5b7f5 100644 --- a/cores/esp8266/Schedule.h +++ b/cores/esp8266/Schedule.h @@ -1,3 +1,21 @@ +/* + Schedule.h - Header file for scheduled functions. + Copyright (c) 2020 esp8266/Arduino + + This file is part of the esp8266 core for Arduino environment. + 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 ESP_SCHEDULE_H #define ESP_SCHEDULE_H From 16c93f84ebd90ee90c0e7fbe365ff9ded3aaaf8c Mon Sep 17 00:00:00 2001 From: Develo Date: Thu, 15 Oct 2020 14:58:33 -0300 Subject: [PATCH 2/2] Add copyright notice to Schedule.cpp --- cores/esp8266/Schedule.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/cores/esp8266/Schedule.cpp b/cores/esp8266/Schedule.cpp index 9cb86c8d1d..5ac887ce10 100644 --- a/cores/esp8266/Schedule.cpp +++ b/cores/esp8266/Schedule.cpp @@ -1,3 +1,20 @@ +/* + Schedule.cpp - Scheduled functions. + Copyright (c) 2020 esp8266/Arduino + + This file is part of the esp8266 core for Arduino environment. + 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