From ee6dd565d47e340ad9fdb716308558c67e30e17c Mon Sep 17 00:00:00 2001 From: Valerio De Benedetto Date: Tue, 25 Jan 2022 16:35:19 +0100 Subject: [PATCH] Added license headers --- nanomodbus.c | 19 +++++++++++++++++++ nanomodbus.h | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/nanomodbus.c b/nanomodbus.c index db5c50b..fe0a6c1 100644 --- a/nanomodbus.c +++ b/nanomodbus.c @@ -1,3 +1,22 @@ +/* + nanoMODBUS - A compact MODBUS RTU/TCP C library for microcontrollers + Copyright (C) 2022 Valerio De Benedetto (@debevv) + + This program 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 2 of the License, or + (at your option) any later version. + + This program 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 this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + #include "nanomodbus.h" #include #include diff --git a/nanomodbus.h b/nanomodbus.h index 4bd938f..ff63087 100644 --- a/nanomodbus.h +++ b/nanomodbus.h @@ -1,3 +1,22 @@ +/* + nanoMODBUS - A compact MODBUS RTU/TCP C library for microcontrollers + Copyright (C) 2022 Valerio De Benedetto (@debevv) + + This program 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 2 of the License, or + (at your option) any later version. + + This program 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 this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + /** @file */ /*! \mainpage nanoMODBUS - A compact MODBUS RTU/TCP C library for microcontrollers