SAKURA Internet IoT Communication Module Library for mbed

Dependents:   patlite_sakuraio sakuraio_lte_firmwareupdater shownet2017-iinebutton patlite_sakuraio_stack ... more

SAKURA Internet IoT Communication Module Library for mbed

Sakura Communication Module (with sakura.io) library for mbed.

Support

This library supports following products.

Reference

Please see the datasheet.

License

The MIT License (MIT)

Copyright (c) SAKURA Internet Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Committer:
okuhara
Date:
Fri Apr 13 10:23:27 2018 +0000
Revision:
13:a9dbb86be232
Parent:
9:353615a53634
Add the PowerSaveMode commands.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
chibiegg 9:353615a53634 1 # Maintenance
chibiegg 9:353615a53634 2
chibiegg 9:353615a53634 3 ## Sync with github.com
chibiegg 9:353615a53634 4
chibiegg 9:353615a53634 5 ### Setup hg-git
chibiegg 9:353615a53634 6
chibiegg 9:353615a53634 7 ```bash
chibiegg 9:353615a53634 8 pip install mercurial hg-git
chibiegg 9:353615a53634 9 ```
chibiegg 9:353615a53634 10
chibiegg 9:353615a53634 11 #### ~/.hgrc
chibiegg 9:353615a53634 12
chibiegg 9:353615a53634 13 ```
chibiegg 9:353615a53634 14 [extensions]
chibiegg 9:353615a53634 15 hggit =
chibiegg 9:353615a53634 16 ```
chibiegg 9:353615a53634 17
chibiegg 9:353615a53634 18 ### mbed.org to github.com
chibiegg 9:353615a53634 19
chibiegg 9:353615a53634 20 ```bash
chibiegg 9:353615a53634 21 hg clone https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO/ SakuraIOmbed-sync
chibiegg 9:353615a53634 22 cd SakuraIOmbed-sync
chibiegg 9:353615a53634 23 hg push git+ssh://git@github.com:sakuraio/SakuraIOmbed.git
chibiegg 9:353615a53634 24 ```
chibiegg 9:353615a53634 25
chibiegg 9:353615a53634 26 ### github.com to mbed.org
chibiegg 9:353615a53634 27
chibiegg 9:353615a53634 28 ```bash
chibiegg 9:353615a53634 29 hg pull git+ssh://git@github.com:sakuraio/SakuraIOmbed.git
chibiegg 9:353615a53634 30 hg outgoing https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO/ # check diff
chibiegg 9:353615a53634 31 hg push https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO/
chibiegg 9:353615a53634 32 ```