The driver for the ESP8266 WiFi module

Dependents:   Datarecorder2

Fork of esp8266-driver by ESP8266

Committer:
joschaihl
Date:
Wed Nov 15 20:05:03 2017 +0000
Revision:
1:aea829468cfc
Parent:
0:6946b0b9e323
test

Who changed what in which revision?

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