MurataTypeYD_RPC_Sample fixed version for 050314

Dependencies:   PowerControl SNICInterface_mod2 mbed-rtos mbed

Fork of HTTPClient_WiFi_HelloWorld by KDDI Fx0 hackathon

Committer:
komoritan
Date:
Thu Mar 12 12:27:31 2015 +0000
Revision:
6:6c49fdc29825
Fixed

Who changed what in which revision?

UserRevisionLine numberNew contents of line
komoritan 6:6c49fdc29825 1 /* Copyright (C) 2015 KDDI Technology, MIT License
komoritan 6:6c49fdc29825 2 *
komoritan 6:6c49fdc29825 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
komoritan 6:6c49fdc29825 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
komoritan 6:6c49fdc29825 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
komoritan 6:6c49fdc29825 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
komoritan 6:6c49fdc29825 7 * furnished to do so, subject to the following conditions:
komoritan 6:6c49fdc29825 8 *
komoritan 6:6c49fdc29825 9 * The above copyright notice and this permission notice shall be included in all copies or
komoritan 6:6c49fdc29825 10 * substantial portions of the Software.
komoritan 6:6c49fdc29825 11 *
komoritan 6:6c49fdc29825 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
komoritan 6:6c49fdc29825 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
komoritan 6:6c49fdc29825 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
komoritan 6:6c49fdc29825 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
komoritan 6:6c49fdc29825 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
komoritan 6:6c49fdc29825 17 */
komoritan 6:6c49fdc29825 18
komoritan 6:6c49fdc29825 19 #ifndef RPC_FUNCTION
komoritan 6:6c49fdc29825 20 #define RPC_FUNCTION
komoritan 6:6c49fdc29825 21
komoritan 6:6c49fdc29825 22 // inputデータに従い、LED1~4の点灯・消灯を設定する。inputデータはカンマ区切りを想定。
komoritan 6:6c49fdc29825 23 void doSetLed(char* input, char* output);
komoritan 6:6c49fdc29825 24 // ジャイロ情報を取得する。
komoritan 6:6c49fdc29825 25 void doGetGyro(char* input, char* output);
komoritan 6:6c49fdc29825 26
komoritan 6:6c49fdc29825 27 #endif