Minimalistischer Remote Procedure Call (RPC) HTTP Server V2

Dependencies:   EthernetInterface HttpServer OLEDDisplay mbed-rtos mbed

Fork of RPCHTTPServerSimple by smd.iotkit2.ch

Revision:
12:e55991dab543
Parent:
11:43e28c85fd75
Child:
14:ab5b22ac6b42
--- a/main.cpp	Wed Apr 08 12:31:41 2015 +0000
+++ b/main.cpp	Mon Apr 13 08:38:02 2015 +0000
@@ -1,4 +1,4 @@
-/** Minimalistischer RCP HTTP Server
+/** Minimalistischer Remote Procedure Call (RPC) HTTP Server
 */
 #include "mbed.h"
 #include "rtos.h"
@@ -18,7 +18,7 @@
     // Klassen
     RPC::add_rpc_class<RpcDigitalOut>();
     RPC::add_rpc_class<RpcDigitalIn>();
-    //RPC::add_rpc_class<RpcAnalogIn>(); // bringt Link Fehler     
+    RPC::add_rpc_class<RpcAnalogIn>(); 
     RPC::add_rpc_class<RpcPwmOut>();    
     
     // Objekte
@@ -35,5 +35,4 @@
     // Start HTTP Server auf Port 80
     printf( "Starte Server\n" );
     HTTPServerStart(80);
-}
-
+}
\ No newline at end of file