各ピンへのread/writeを提供するサーバサンプル

Dependencies:   NySNICInterface mbed-rtos mbed

Fork of RESTServerSample2 by KDDI Fx0 hackathon

Committer:
komoritan
Date:
Thu Mar 12 12:40:48 2015 +0000
Revision:
1:e5d3bd4af9da
Parent:
0:998e2e00df0c
Bug fix - handle_request

Who changed what in which revision?

UserRevisionLine numberNew contents of line
komoritan 0:998e2e00df0c 1 /* mbed Microcontroller Library
komoritan 0:998e2e00df0c 2 * Copyright (c) 2006-2013 ARM Limited
komoritan 0:998e2e00df0c 3 *
komoritan 0:998e2e00df0c 4 * Licensed under the Apache License, Version 2.0 (the "License");
komoritan 0:998e2e00df0c 5 * you may not use this file except in compliance with the License.
komoritan 0:998e2e00df0c 6 * You may obtain a copy of the License at
komoritan 0:998e2e00df0c 7 *
komoritan 0:998e2e00df0c 8 * http://www.apache.org/licenses/LICENSE-2.0
komoritan 0:998e2e00df0c 9 *
komoritan 0:998e2e00df0c 10 * Unless required by applicable law or agreed to in writing, software
komoritan 0:998e2e00df0c 11 * distributed under the License is distributed on an "AS IS" BASIS,
komoritan 0:998e2e00df0c 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
komoritan 0:998e2e00df0c 13 * See the License for the specific language governing permissions and
komoritan 0:998e2e00df0c 14 * limitations under the License.
komoritan 0:998e2e00df0c 15 */
komoritan 0:998e2e00df0c 16 #ifndef MBED_PINMAP_H
komoritan 0:998e2e00df0c 17 #define MBED_PINMAP_H
komoritan 0:998e2e00df0c 18
komoritan 0:998e2e00df0c 19 #include "PinNames.h"
komoritan 0:998e2e00df0c 20
komoritan 0:998e2e00df0c 21 namespace mbed {
komoritan 0:998e2e00df0c 22
komoritan 0:998e2e00df0c 23 PinName parse_pins(const char *str);
komoritan 0:998e2e00df0c 24
komoritan 0:998e2e00df0c 25 }
komoritan 0:998e2e00df0c 26
komoritan 0:998e2e00df0c 27 #endif