OneNet_IoT_demo for ASC platform

Dependencies:   Common_lib ESP8266 EdpKit_lib cJSON_lib driver_mbed_HP20x driver_mbed_TH02 wifi_example

Fork of mbed-os-example-esp8266 by ESP8266

Committer:
group-ESP8266
Date:
Thu Jan 12 20:21:45 2017 +0000
Revision:
0:b887535f68bf
Initial commit

Who changed what in which revision?

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