Sample program of SAKURA Internet IoT Communication Module

Dependencies:   SakuraIO mbed

View the Github repository.

Revision:
4:59d500069fed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MAINTENANCE.md	Thu Sep 07 12:39:19 2017 +0900
@@ -0,0 +1,32 @@
+# Maintenance
+
+## Sync with github.com
+
+### Setup hg-git
+
+```bash
+pip install mercurial hg-git
+```
+
+#### ~/.hgrc
+
+```
+[extensions]
+hggit =
+```
+
+### mbed.org to github.com
+
+```bash
+hg clone https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/ SakuraIO_Standard-sync
+cd SakuraIOmbed-sync
+hg push git@github.com:sakuraio/sakuraio-mbed-standard.git
+```
+
+### github.com to mbed.org
+
+```bash
+hg pull git@github.com:sakuraio/sakuraio-mbed-standard.git
+hg outgoing https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/ # check diff
+hg push https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Standard/
+```