Skip to content

Commit e3e050a

Browse files
committed
mbusd 0.2.2
1 parent 85943e8 commit e3e050a

8 files changed

+127
-82
lines changed

ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,9 @@
3030
08-jun-2015:
3131

3232
+ Added serial port mode configuration option (-m).
33+
34+
0.2.2
35+
-----------
36+
18-dec-2015:
37+
38+
* Fixed function 6 response reading error (#3).

Makefile.in

+29-18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.14.1 from Makefile.am.
1+
# Makefile.in generated by automake 1.15 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -15,7 +15,17 @@
1515
@SET_MAKE@
1616

1717
VPATH = @srcdir@
18-
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
18+
am__is_gnu_make = { \
19+
if test -z '$(MAKELEVEL)'; then \
20+
false; \
21+
elif test -n '$(MAKE_HOST)'; then \
22+
true; \
23+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
24+
true; \
25+
else \
26+
false; \
27+
fi; \
28+
}
1929
am__make_running_with_option = \
2030
case $${target_option-} in \
2131
?) ;; \
@@ -79,19 +89,15 @@ POST_UNINSTALL = :
7989
build_triplet = @build@
8090
host_triplet = @host@
8191
subdir = .
82-
DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
83-
$(srcdir)/Makefile.in $(srcdir)/Makefile.am \
84-
$(top_srcdir)/configure $(am__configure_deps) \
85-
$(srcdir)/config.h.in mkinstalldirs COPYING TODO compile \
86-
config.guess config.sub depcomp install-sh missing ltmain.sh \
87-
ltconfig
8892
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
8993
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
9094
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
9195
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9296
$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in
9397
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9498
$(ACLOCAL_M4)
99+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
100+
$(am__configure_deps) $(am__DIST_COMMON)
95101
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
96102
configure.lineno config.status.lineno
97103
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -184,6 +190,10 @@ ETAGS = etags
184190
CTAGS = ctags
185191
CSCOPE = cscope
186192
DIST_SUBDIRS = $(SUBDIRS)
193+
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
194+
COPYING ChangeLog INSTALL NEWS README TODO compile \
195+
config.guess config.sub depcomp install-sh ltconfig ltmain.sh \
196+
missing mkinstalldirs
187197
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
188198
distdir = $(PACKAGE)-$(VERSION)
189199
top_distdir = $(distdir)
@@ -382,7 +392,6 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
382392
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
383393
$(am__cd) $(top_srcdir) && \
384394
$(AUTOMAKE) --gnu Makefile
385-
.PRECIOUS: Makefile
386395
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
387396
@case '$?' in \
388397
*config.status*) \
@@ -637,15 +646,15 @@ dist-xz: distdir
637646
$(am__post_remove_distdir)
638647

639648
dist-tarZ: distdir
640-
@echo WARNING: "Support for shar distribution archives is" \
641-
"deprecated." >&2
649+
@echo WARNING: "Support for distribution archives compressed with" \
650+
"legacy program 'compress' is deprecated." >&2
642651
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
643652
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
644653
$(am__post_remove_distdir)
645654

646655
dist-shar: distdir
647-
@echo WARNING: "Support for distribution archives compressed with" \
648-
"legacy program 'compress' is deprecated." >&2
656+
@echo WARNING: "Support for shar distribution archives is" \
657+
"deprecated." >&2
649658
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
650659
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
651660
$(am__post_remove_distdir)
@@ -681,17 +690,17 @@ distcheck: dist
681690
esac
682691
chmod -R a-w $(distdir)
683692
chmod u+w $(distdir)
684-
mkdir $(distdir)/_build $(distdir)/_inst
693+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
685694
chmod a-w $(distdir)
686695
test -d $(distdir)/_build || exit 0; \
687696
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
688697
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
689698
&& am__cwd=`pwd` \
690-
&& $(am__cd) $(distdir)/_build \
691-
&& ../configure \
699+
&& $(am__cd) $(distdir)/_build/sub \
700+
&& ../../configure \
692701
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
693702
$(DISTCHECK_CONFIGURE_FLAGS) \
694-
--srcdir=.. --prefix="$$dc_install_base" \
703+
--srcdir=../.. --prefix="$$dc_install_base" \
695704
&& $(MAKE) $(AM_MAKEFLAGS) \
696705
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
697706
&& $(MAKE) $(AM_MAKEFLAGS) check \
@@ -872,6 +881,8 @@ uninstall-am: uninstall-mbusddocDATA
872881
ps ps-am tags tags-am uninstall uninstall-am \
873882
uninstall-mbusddocDATA
874883

884+
.PRECIOUS: Makefile
885+
875886

876887
# Copy all the spec files. Of cource, only one is actually used.
877888
dist-hook:

aclocal.m4

+35-32
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
1+
# generated automatically by aclocal 1.15 -*- Autoconf -*-
22

3-
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
3+
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
44

55
# This file is free software; the Free Software Foundation
66
# gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,7 @@ You have another version of autoconf. It may work, but is not guaranteed to.
2020
If you have problems, you may need to regenerate the build system entirely.
2121
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
2222

23-
# Copyright (C) 2002-2013 Free Software Foundation, Inc.
23+
# Copyright (C) 2002-2014 Free Software Foundation, Inc.
2424
#
2525
# This file is free software; the Free Software Foundation
2626
# gives unlimited permission to copy and/or distribute it,
@@ -32,10 +32,10 @@ To do so, use the procedure documented by the package, typically 'autoreconf'.])
3232
# generated from the m4 files accompanying Automake X.Y.
3333
# (This private macro should not be called outside this file.)
3434
AC_DEFUN([AM_AUTOMAKE_VERSION],
35-
[am__api_version='1.14'
35+
[am__api_version='1.15'
3636
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
3737
dnl require some minimum version. Point them to the right macro.
38-
m4_if([$1], [1.14.1], [],
38+
m4_if([$1], [1.15], [],
3939
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
4040
])
4141

@@ -51,14 +51,14 @@ m4_define([_AM_AUTOCONF_VERSION], [])
5151
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
5252
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
5353
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
54-
[AM_AUTOMAKE_VERSION([1.14.1])dnl
54+
[AM_AUTOMAKE_VERSION([1.15])dnl
5555
m4_ifndef([AC_AUTOCONF_VERSION],
5656
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
5757
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
5858

5959
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
6060

61-
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
61+
# Copyright (C) 2001-2014 Free Software Foundation, Inc.
6262
#
6363
# This file is free software; the Free Software Foundation
6464
# gives unlimited permission to copy and/or distribute it,
@@ -103,15 +103,14 @@ _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
103103
# configured tree to be moved without reconfiguration.
104104

105105
AC_DEFUN([AM_AUX_DIR_EXPAND],
106-
[dnl Rely on autoconf to set up CDPATH properly.
107-
AC_PREREQ([2.50])dnl
108-
# expand $ac_aux_dir to an absolute path
109-
am_aux_dir=`cd $ac_aux_dir && pwd`
106+
[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
107+
# Expand $ac_aux_dir to an absolute path.
108+
am_aux_dir=`cd "$ac_aux_dir" && pwd`
110109
])
111110

112111
# AM_CONDITIONAL -*- Autoconf -*-
113112

114-
# Copyright (C) 1997-2013 Free Software Foundation, Inc.
113+
# Copyright (C) 1997-2014 Free Software Foundation, Inc.
115114
#
116115
# This file is free software; the Free Software Foundation
117116
# gives unlimited permission to copy and/or distribute it,
@@ -142,7 +141,7 @@ AC_CONFIG_COMMANDS_PRE(
142141
Usually this means the macro was only invoked conditionally.]])
143142
fi])])
144143

145-
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
144+
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
146145
#
147146
# This file is free software; the Free Software Foundation
148147
# gives unlimited permission to copy and/or distribute it,
@@ -333,7 +332,7 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl
333332

334333
# Generate code to set up dependency tracking. -*- Autoconf -*-
335334

336-
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
335+
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
337336
#
338337
# This file is free software; the Free Software Foundation
339338
# gives unlimited permission to copy and/or distribute it,
@@ -409,7 +408,7 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
409408

410409
# Do all the work for Automake. -*- Autoconf -*-
411410

412-
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
411+
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
413412
#
414413
# This file is free software; the Free Software Foundation
415414
# gives unlimited permission to copy and/or distribute it,
@@ -499,8 +498,8 @@ AC_REQUIRE([AC_PROG_MKDIR_P])dnl
499498
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
500499
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
501500
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
502-
# We need awk for the "check" target. The system "awk" is bad on
503-
# some platforms.
501+
# We need awk for the "check" target (and possibly the TAP driver). The
502+
# system "awk" is bad on some platforms.
504503
AC_REQUIRE([AC_PROG_AWK])dnl
505504
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
506505
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
@@ -573,7 +572,11 @@ to "yes", and re-run configure.
573572
END
574573
AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
575574
fi
576-
fi])
575+
fi
576+
dnl The trailing newline in this macro's definition is deliberate, for
577+
dnl backward compatibility and to allow trailing 'dnl'-style comments
578+
dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
579+
])
577580

578581
dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
579582
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
@@ -602,7 +605,7 @@ for _am_header in $config_headers :; do
602605
done
603606
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
604607

605-
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
608+
# Copyright (C) 2001-2014 Free Software Foundation, Inc.
606609
#
607610
# This file is free software; the Free Software Foundation
608611
# gives unlimited permission to copy and/or distribute it,
@@ -613,7 +616,7 @@ echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_co
613616
# Define $install_sh.
614617
AC_DEFUN([AM_PROG_INSTALL_SH],
615618
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
616-
if test x"${install_sh}" != xset; then
619+
if test x"${install_sh+set}" != xset; then
617620
case $am_aux_dir in
618621
*\ * | *\ *)
619622
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
@@ -623,7 +626,7 @@ if test x"${install_sh}" != xset; then
623626
fi
624627
AC_SUBST([install_sh])])
625628

626-
# Copyright (C) 2003-2013 Free Software Foundation, Inc.
629+
# Copyright (C) 2003-2014 Free Software Foundation, Inc.
627630
#
628631
# This file is free software; the Free Software Foundation
629632
# gives unlimited permission to copy and/or distribute it,
@@ -644,7 +647,7 @@ AC_SUBST([am__leading_dot])])
644647

645648
# Check to see how 'make' treats includes. -*- Autoconf -*-
646649

647-
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
650+
# Copyright (C) 2001-2014 Free Software Foundation, Inc.
648651
#
649652
# This file is free software; the Free Software Foundation
650653
# gives unlimited permission to copy and/or distribute it,
@@ -694,7 +697,7 @@ rm -f confinc confmf
694697

695698
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
696699

697-
# Copyright (C) 1997-2013 Free Software Foundation, Inc.
700+
# Copyright (C) 1997-2014 Free Software Foundation, Inc.
698701
#
699702
# This file is free software; the Free Software Foundation
700703
# gives unlimited permission to copy and/or distribute it,
@@ -735,7 +738,7 @@ fi
735738
# Obsolete and "removed" macros, that must however still report explicit
736739
# error messages when used, to smooth transition.
737740
#
738-
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
741+
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
739742
#
740743
# This file is free software; the Free Software Foundation
741744
# gives unlimited permission to copy and/or distribute it,
@@ -762,7 +765,7 @@ AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES])
762765

763766
# Helper functions for option handling. -*- Autoconf -*-
764767

765-
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
768+
# Copyright (C) 2001-2014 Free Software Foundation, Inc.
766769
#
767770
# This file is free software; the Free Software Foundation
768771
# gives unlimited permission to copy and/or distribute it,
@@ -791,7 +794,7 @@ AC_DEFUN([_AM_SET_OPTIONS],
791794
AC_DEFUN([_AM_IF_OPTION],
792795
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
793796

794-
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
797+
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
795798
#
796799
# This file is free software; the Free Software Foundation
797800
# gives unlimited permission to copy and/or distribute it,
@@ -838,7 +841,7 @@ AC_LANG_POP([C])])
838841
# For backward compatibility.
839842
AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
840843

841-
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
844+
# Copyright (C) 2001-2014 Free Software Foundation, Inc.
842845
#
843846
# This file is free software; the Free Software Foundation
844847
# gives unlimited permission to copy and/or distribute it,
@@ -857,7 +860,7 @@ AC_DEFUN([AM_RUN_LOG],
857860

858861
# Check to make sure that the build environment is sane. -*- Autoconf -*-
859862

860-
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
863+
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
861864
#
862865
# This file is free software; the Free Software Foundation
863866
# gives unlimited permission to copy and/or distribute it,
@@ -938,7 +941,7 @@ AC_CONFIG_COMMANDS_PRE(
938941
rm -f conftest.file
939942
])
940943

941-
# Copyright (C) 2009-2013 Free Software Foundation, Inc.
944+
# Copyright (C) 2009-2014 Free Software Foundation, Inc.
942945
#
943946
# This file is free software; the Free Software Foundation
944947
# gives unlimited permission to copy and/or distribute it,
@@ -998,7 +1001,7 @@ AC_SUBST([AM_BACKSLASH])dnl
9981001
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
9991002
])
10001003

1001-
# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1004+
# Copyright (C) 2001-2014 Free Software Foundation, Inc.
10021005
#
10031006
# This file is free software; the Free Software Foundation
10041007
# gives unlimited permission to copy and/or distribute it,
@@ -1026,7 +1029,7 @@ fi
10261029
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
10271030
AC_SUBST([INSTALL_STRIP_PROGRAM])])
10281031

1029-
# Copyright (C) 2006-2013 Free Software Foundation, Inc.
1032+
# Copyright (C) 2006-2014 Free Software Foundation, Inc.
10301033
#
10311034
# This file is free software; the Free Software Foundation
10321035
# gives unlimited permission to copy and/or distribute it,
@@ -1045,7 +1048,7 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
10451048

10461049
# Check how to create a tarball. -*- Autoconf -*-
10471050

1048-
# Copyright (C) 2004-2013 Free Software Foundation, Inc.
1051+
# Copyright (C) 2004-2014 Free Software Foundation, Inc.
10491052
#
10501053
# This file is free software; the Free Software Foundation
10511054
# gives unlimited permission to copy and/or distribute it,

0 commit comments

Comments
 (0)