diff --git a/.git_filters/rcs-keywords.clean b/.git_filters/rcs-keywords.clean deleted file mode 100644 index 175f972..0000000 --- a/.git_filters/rcs-keywords.clean +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/perl -p -# -# @brief Git filter to implement rcs keyword expansion as seen in cvs and svn. -# @author Martin Turon -# -# Copyright (c) 2009-2011 Turon Technologies, Inc. All rights reserved. - -s/\$Id[^\$]*\$/\$Id\$/; -s/\$Date[^\$]*\$/\$Date\$/; -s/\$Author[^\$]*\$/\$Author\$/; -s/\$Source[^\$]*\$/\$Source\$/; -s/\$File[^\$]*\$/\$File\$/; -s/\$Revision[^\$]*\$/\$Revision\$/; diff --git a/.git_filters/rcs-keywords.smudge b/.git_filters/rcs-keywords.smudge deleted file mode 100644 index e83c166..0000000 --- a/.git_filters/rcs-keywords.smudge +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/perl -# -# @brief Git filter to implement rcs keyword expansion as seen in cvs and svn. -# @author Martin Turon -# -# Usage: -# .git_filter/rcs-keywords.smudge file_path < file_contents -# -# To add keyword expansion: -# /.gitattributes - *.c filter=rcs-keywords -# /.git_filters/rcs-keywords.smudge - copy this file to project -# /.git_filters/rcs-keywords.clean - copy companion to project -# ~/.gitconfig - add [filter] lines below -# -# [filter "rcs-keywords"] -# clean = .git_filters/rcs-keywords.clean -# smudge = .git_filters/rcs-keywords.smudge %f -# -# Copyright (c) 2009-2011 Turon Technologies, Inc. All rights reserved. - -$path = shift; -$path =~ /.*\/(.*)/; -$filename = $1; - -if (0 == length($filename)) { - $filename = $path; -} - -# Need to grab filename and to use git log for this to be accurate. -$rev = `git log -- $path | head -n 3`; -$rev =~ /^Author:\s*(.*)\s*$/m; -$author = $1; -$author =~ /\s*(.*)\s*<.*/; -$name = $1; -$rev =~ /^Date:\s*(.*)\s*$/m; -$date = $1; -$rev =~ /^commit (.*)$/m; -$ident = $1; - -while () { - s/\$Date[^\$]*\$/\$Date: $date \$/; - s/\$Author[^\$]*\$/\$Author: $author \$/; - s/\$Id[^\$]*\$/\$Id: $filename | $date | $name \$/; - s/\$File[^\$]*\$/\$File: $filename \$/; - s/\$Source[^\$]*\$/\$Source: $path \$/; - s/\$Revision[^\$]*\$/\$Revision: $ident \$/; -} continue { - print or die "-p destination: $!\n"; -} diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index e9d188a..0000000 --- a/.gitattributes +++ /dev/null @@ -1,8 +0,0 @@ -# .gitattributes -# Map file extensions to git filters - -*.h filter=rcs-keywords -*.c filter=rcs-keywords -*.cc filter=rcs-keywords -*.m filter=rcs-keywords -*.mm filter=rcs-keywords diff --git a/Changelog.txt b/Changelog.txt index 02b5251..9ceae07 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,3 +1,6 @@ +2018-09-13 (REL_1_6_0) Christian Walter + Notes: Changed licensing for mbfuncdisc.c. Updating licensing info + and contact details in core stack. 2010-05-06 (REL_1_5_0) Christian Walter Notes: Added support for Atmel AT91SAM3S (Cortex M3) for IAR. diff --git a/doc/doxygen.conf b/doc/doxygen.conf index 365d48c..4e29c94 100644 --- a/doc/doxygen.conf +++ b/doc/doxygen.conf @@ -11,7 +11,7 @@ PROJECT_NAME = FreeModbus # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.5 +PROJECT_NUMBER = 1.6 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/modbus/ascii/mbascii.c b/modbus/ascii/mbascii.c index 29635ed..b29f2bc 100644 --- a/modbus/ascii/mbascii.c +++ b/modbus/ascii/mbascii.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/ascii/mbascii.h b/modbus/ascii/mbascii.h index 8840428..20975e2 100644 --- a/modbus/ascii/mbascii.h +++ b/modbus/ascii/mbascii.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_ASCII_H diff --git a/modbus/functions/mbfunccoils.c b/modbus/functions/mbfunccoils.c index 4bd7da3..eb37ed6 100644 --- a/modbus/functions/mbfunccoils.c +++ b/modbus/functions/mbfunccoils.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/functions/mbfuncdiag.c b/modbus/functions/mbfuncdiag.c index 57504da..8c32e85 100644 --- a/modbus/functions/mbfuncdiag.c +++ b/modbus/functions/mbfuncdiag.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,5 +25,4 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ diff --git a/modbus/functions/mbfuncdisc.c b/modbus/functions/mbfuncdisc.c index fb37844..1dc10e5 100644 --- a/modbus/functions/mbfuncdisc.c +++ b/modbus/functions/mbfuncdisc.c @@ -1,23 +1,31 @@ - /* - * FreeRTOS Modbus Libary: A Modbus serial implementation for FreeRTOS - * Copyright (C) 2006 Christian Walter - * - * 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 - */ - - +/* + * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. + * Copyright (c) 2006-2018 Christian Walter + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ /* ----------------------- System includes ----------------------------------*/ #include "stdlib.h" diff --git a/modbus/functions/mbfuncholding.c b/modbus/functions/mbfuncholding.c index eea2be1..3974b3e 100644 --- a/modbus/functions/mbfuncholding.c +++ b/modbus/functions/mbfuncholding.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/functions/mbfuncinput.c b/modbus/functions/mbfuncinput.c index e1f8c1b..2cf1144 100644 --- a/modbus/functions/mbfuncinput.c +++ b/modbus/functions/mbfuncinput.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/functions/mbfuncother.c b/modbus/functions/mbfuncother.c index 6e94e43..adbc85d 100644 --- a/modbus/functions/mbfuncother.c +++ b/modbus/functions/mbfuncother.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/functions/mbutils.c b/modbus/functions/mbutils.c index a3f3426..be384fc 100644 --- a/modbus/functions/mbutils.c +++ b/modbus/functions/mbutils.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/include/mb.h b/modbus/include/mb.h index 971d1b3..1c09e77 100644 --- a/modbus/include/mb.h +++ b/modbus/include/mb.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_H diff --git a/modbus/include/mbconfig.h b/modbus/include/mbconfig.h index d903d98..02615cb 100644 --- a/modbus/include/mbconfig.h +++ b/modbus/include/mbconfig.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_CONFIG_H diff --git a/modbus/include/mbframe.h b/modbus/include/mbframe.h index 6bc302d..69a7698 100644 --- a/modbus/include/mbframe.h +++ b/modbus/include/mbframe.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_FRAME_H diff --git a/modbus/include/mbfunc.h b/modbus/include/mbfunc.h index 672b585..ccf54ef 100644 --- a/modbus/include/mbfunc.h +++ b/modbus/include/mbfunc.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,9 +25,8 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ - + #ifndef _MB_FUNC_H #define _MB_FUNC_H diff --git a/modbus/include/mbport.h b/modbus/include/mbport.h index d1c845e..3198f1b 100644 --- a/modbus/include/mbport.h +++ b/modbus/include/mbport.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_PORT_H diff --git a/modbus/include/mbproto.h b/modbus/include/mbproto.h index 1c1f824..e2d14cf 100644 --- a/modbus/include/mbproto.h +++ b/modbus/include/mbproto.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_PROTO_H diff --git a/modbus/include/mbutils.h b/modbus/include/mbutils.h index 5999230..385b8c1 100644 --- a/modbus/include/mbutils.h +++ b/modbus/include/mbutils.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_UTILS_H diff --git a/modbus/mb.c b/modbus/mb.c index 9412252..be7c132 100644 --- a/modbus/mb.c +++ b/modbus/mb.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/rtu/mbcrc.c b/modbus/rtu/mbcrc.c index 33bf889..2f8445d 100644 --- a/modbus/rtu/mbcrc.c +++ b/modbus/rtu/mbcrc.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- Platform includes --------------------------------*/ diff --git a/modbus/rtu/mbcrc.h b/modbus/rtu/mbcrc.h index d67a527..b182e69 100644 --- a/modbus/rtu/mbcrc.h +++ b/modbus/rtu/mbcrc.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_CRC_H diff --git a/modbus/rtu/mbrtu.c b/modbus/rtu/mbrtu.c index 99a1ec4..d858e56 100644 --- a/modbus/rtu/mbrtu.c +++ b/modbus/rtu/mbrtu.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/rtu/mbrtu.h b/modbus/rtu/mbrtu.h index 26c8b23..6981687 100644 --- a/modbus/rtu/mbrtu.h +++ b/modbus/rtu/mbrtu.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_RTU_H diff --git a/modbus/tcp/mbtcp.c b/modbus/tcp/mbtcp.c index 8a5b36e..5a75fda 100644 --- a/modbus/tcp/mbtcp.c +++ b/modbus/tcp/mbtcp.c @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ /* ----------------------- System includes ----------------------------------*/ diff --git a/modbus/tcp/mbtcp.h b/modbus/tcp/mbtcp.h index b4a9a01..16b651e 100644 --- a/modbus/tcp/mbtcp.h +++ b/modbus/tcp/mbtcp.h @@ -1,6 +1,6 @@ /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006 Christian Walter + * Copyright (c) 2006-2018 Christian Walter * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -25,7 +25,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * File: $Id$ */ #ifndef _MB_TCP_H