Version of easy-connect with the u-blox cellular platforms C027 and C030 added.

Dependents:   HelloMQTT

Committer:
RobMeades
Date:
Fri Nov 03 13:01:23 2017 +0000
Revision:
6:304d3ba87a01
Parent:
0:19aa55d66228
Add comment concerning N2XX baud rate.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
group-ublox 0:19aa55d66228 1 #!/bin/sh
group-ublox 0:19aa55d66228 2 #
group-ublox 0:19aa55d66228 3 # An example hook script to check the commit log message taken by
group-ublox 0:19aa55d66228 4 # applypatch from an e-mail message.
group-ublox 0:19aa55d66228 5 #
group-ublox 0:19aa55d66228 6 # The hook should exit with non-zero status after issuing an
group-ublox 0:19aa55d66228 7 # appropriate message if it wants to stop the commit. The hook is
group-ublox 0:19aa55d66228 8 # allowed to edit the commit message file.
group-ublox 0:19aa55d66228 9 #
group-ublox 0:19aa55d66228 10 # To enable this hook, rename this file to "applypatch-msg".
group-ublox 0:19aa55d66228 11
group-ublox 0:19aa55d66228 12 . git-sh-setup
group-ublox 0:19aa55d66228 13 test -x "$GIT_DIR/hooks/commit-msg" &&
group-ublox 0:19aa55d66228 14 exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
group-ublox 0:19aa55d66228 15 :