
An example HTTP Server using new Ethernet Interface and localfilesystem.
Dependencies: EthernetInterface HttpServer mbed-rpc mbed-rtos mbed
Fork of giken9_HTMLServer_Sample by
mbed-rpc/mbed_rpc.h@2:14b689a85306, 2014-03-12 (annotated)
- Committer:
- yueee_yt
- Date:
- Wed Mar 12 04:39:15 2014 +0000
- Revision:
- 2:14b689a85306
- Parent:
- 0:7766f6712673
bug fix
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
yueee_yt | 0:7766f6712673 | 1 | /* mbed Microcontroller Library |
yueee_yt | 0:7766f6712673 | 2 | * Copyright (c) 2006-2013 ARM Limited |
yueee_yt | 0:7766f6712673 | 3 | * |
yueee_yt | 0:7766f6712673 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
yueee_yt | 0:7766f6712673 | 5 | * you may not use this file except in compliance with the License. |
yueee_yt | 0:7766f6712673 | 6 | * You may obtain a copy of the License at |
yueee_yt | 0:7766f6712673 | 7 | * |
yueee_yt | 0:7766f6712673 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
yueee_yt | 0:7766f6712673 | 9 | * |
yueee_yt | 0:7766f6712673 | 10 | * Unless required by applicable law or agreed to in writing, software |
yueee_yt | 0:7766f6712673 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
yueee_yt | 0:7766f6712673 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
yueee_yt | 0:7766f6712673 | 13 | * See the License for the specific language governing permissions and |
yueee_yt | 0:7766f6712673 | 14 | * limitations under the License. |
yueee_yt | 0:7766f6712673 | 15 | */ |
yueee_yt | 0:7766f6712673 | 16 | #ifndef MBED_RPC_H |
yueee_yt | 0:7766f6712673 | 17 | #define MBED_RPC_H |
yueee_yt | 0:7766f6712673 | 18 | |
yueee_yt | 0:7766f6712673 | 19 | #include "rpc.h" |
yueee_yt | 0:7766f6712673 | 20 | #include "RPCVariable.h" |
yueee_yt | 0:7766f6712673 | 21 | #include "RPCFunction.h" |
yueee_yt | 0:7766f6712673 | 22 | #include "RpcClasses.h" |
yueee_yt | 0:7766f6712673 | 23 | #include "Arguments.h" |
yueee_yt | 0:7766f6712673 | 24 | |
yueee_yt | 0:7766f6712673 | 25 | #endif |