modified to get more signal info

Dependencies:   WNC14A2AInterface

Fork of easy-connect by Jim Flynn

Committer:
tdMBED
Date:
Sat Nov 25 21:52:06 2017 +0000
Revision:
7:b7ed55f374be
Parent:
0:2563b0415d1f
modified to get more signal info

Who changed what in which revision?

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