Applied 0000-version-magic.patch and bumped to 1.6
This commit is contained in:
parent
44c6c3d1da
commit
5f84d54890
4
NEWS
4
NEWS
|
|
@ -6,6 +6,10 @@ vim: spelllang=en spell tw=78
|
|||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Changes in 1.6.0-rc1:
|
||||
|
||||
* Support for multiple mailbox protocols at the same time
|
||||
|
||||
Changes since 1.5.2:
|
||||
|
||||
* Fixed FoE timeout calculation bug.
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
#------------------------------------------------------------------------------
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
# Copyright (C) 2006-2012 Florian Pose, Ingenieurgemeinschaft IgH
|
||||
# Copyright (C) 2006-2022 Florian Pose, Ingenieurgemeinschaft IgH
|
||||
#
|
||||
# This file is part of the IgH EtherCAT Master.
|
||||
#
|
||||
|
|
@ -39,7 +37,7 @@ AC_PREREQ(2.59)
|
|||
# - Update version number below
|
||||
# - make dist-bzip2
|
||||
#
|
||||
AC_INIT([ethercat],[1.5.2],[fp@igh-essen.com])
|
||||
AC_INIT([ethercat],[1.6.0-rc1],[fp@igh.de])
|
||||
AC_CONFIG_AUX_DIR([autoconf])
|
||||
AM_INIT_AUTOMAKE([-Wall -Wno-override -Werror dist-bzip2 subdir-objects])
|
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
%
|
||||
% IgH EtherCAT Master Documentation
|
||||
%
|
||||
% $Id$
|
||||
%
|
||||
% vi: spell spelllang=en tw=78
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
|
|
@ -60,7 +58,7 @@
|
|||
|
||||
\rcsInfo $RCSId$
|
||||
|
||||
\newcommand{\masterversion}{1.5.2}
|
||||
\newcommand{\masterversion}{1.6.0}
|
||||
\newcommand{\linenum}[1]{\normalfont\textcircled{\tiny #1}}
|
||||
|
||||
\makeindex
|
||||
|
|
|
|||
|
|
@ -145,15 +145,20 @@
|
|||
|
||||
/** EtherCAT realtime interface minor version number.
|
||||
*/
|
||||
#define ECRT_VER_MINOR 5
|
||||
#define ECRT_VER_MINOR 6
|
||||
|
||||
/** EtherCAT realtime interface patchlevel number.
|
||||
*/
|
||||
#define ECRT_VER_PATCH 0
|
||||
|
||||
/** EtherCAT realtime interface version word generator.
|
||||
*/
|
||||
#define ECRT_VERSION(a, b) (((a) << 8) + (b))
|
||||
#define ECRT_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
|
||||
|
||||
/** EtherCAT realtime interface version word.
|
||||
*/
|
||||
#define ECRT_VERSION_MAGIC ECRT_VERSION(ECRT_VER_MAJOR, ECRT_VER_MINOR)
|
||||
#define ECRT_VERSION_MAGIC \
|
||||
ECRT_VERSION(ECRT_VER_MAJOR, ECRT_VER_MINOR, ECRT_VER_PATCH)
|
||||
|
||||
/******************************************************************************
|
||||
* Feature flags
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@
|
|||
*
|
||||
* Increment this when changing the ioctl interface!
|
||||
*/
|
||||
#define EC_IOCTL_VERSION_MAGIC 31
|
||||
#define EC_IOCTL_VERSION_MAGIC 37
|
||||
|
||||
// Command-line tool
|
||||
#define EC_IOCTL_MODULE EC_IOR(0x00, ec_ioctl_module_t)
|
||||
|
|
|
|||
Loading…
Reference in New Issue