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 verify what is about to be committed
JMF 0:2563b0415d1f 4 # by 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.
JMF 0:2563b0415d1f 8 #
JMF 0:2563b0415d1f 9 # To enable this hook, rename this file to "pre-applypatch".
JMF 0:2563b0415d1f 10
JMF 0:2563b0415d1f 11 . git-sh-setup
JMF 0:2563b0415d1f 12 test -x "$GIT_DIR/hooks/pre-commit" &&
JMF 0:2563b0415d1f 13 exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
JMF 0:2563b0415d1f 14 :