Added support for WNC M14A2A Cellular LTE Data Module.

Dependencies:   WNC14A2AInterface

Dependents:   http-example-wnc http-example-wnc-modified

Committer:
root@developer-sjc-cyan-compiler.local.mbed.org
Date:
Sun Apr 23 18:40:51 2017 +0000
Revision:
5:391eac6a0a94
Parent:
0:2563b0415d1f
Added tag att_cellular_K64_wnc_14A2A_20170423 for changeset daf182af022b

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 :