1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-27 01:56:14 +01:00

License details correction

This commit is contained in:
Asbelos 2020-10-20 12:48:32 +01:00
parent 742f10bf0a
commit 8c8a484671
2 changed files with 34 additions and 43 deletions

View File

@ -1,26 +1,21 @@
/* /*
* © 2020, Chris Harlow. All rights reserved.
(c) 2015 Ingo Fischer *
buffer serial device * This file is part of DCC-EX CommandStation-EX
based on Arduino SoftwareSerial *
* This is free software: you can redistribute it and/or modify
Constructor warning messages fixed by Chris Harlow. * it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
This library is free software; you can redistribute it and/or * (at your option) any later version.
modify it under the terms of the GNU Lesser General Public *
License as published by the Free Software Foundation; either * It is distributed in the hope that it will be useful,
version 2.1 of the License, or (at your option) any later version. * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
This library is distributed in the hope that it will be useful, * GNU General Public License for more details.
but WITHOUT ANY WARRANTY; without even the implied warranty of *
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * You should have received a copy of the GNU General Public License
Lesser General Public License for more details. * along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
*/
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 "RingStream.h" #include "RingStream.h"
#include "DIAG.h" #include "DIAG.h"

View File

@ -1,28 +1,24 @@
#ifndef RingStream_h #ifndef RingStream_h
#define RingStream_h #define RingStream_h
/* /*
* © 2020, Chris Harlow. All rights reserved.
*
* This file is part of DCC-EX CommandStation-EX
*
* This is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* It 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
*/
(c) 2015 Ingo Fischer
buffer serial device
based on Arduino SoftwareSerial
Constructor warning messages fixed by Chris Harlow.
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 <Arduino.h> #include <Arduino.h>
class RingStream : public Print { class RingStream : public Print {