Webserver only w/o any other functions, single thread. Running on STM32F013+W5500

Dependencies:   NTPClient W5500Interface Watchdog device_configuration eeprom_flash mbed-rpc-nucleo mbed-rtos mbed

Fork of F103-Serial-to-Ethernet by Chau Vo

Files at this revision

API Documentation at this revision

Comitter:
olympux
Date:
Thu Jun 16 09:12:20 2016 +0000
Parent:
40:c966abbe2d62
Child:
42:d0ff08711ca5
Commit message:
Fixed usage of string RPCVariable to include buffer length

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Thu Jun 16 08:38:31 2016 +0000
+++ b/main.cpp	Thu Jun 16 09:12:20 2016 +0000
@@ -100,7 +100,7 @@
 float speed;
 RPCVariable<float> rpcSpeed(&speed, "speed");
 char stripaddr[20];
-RPCVariable<char*> rpcIPAddress(stripaddr, "ipaddr");
+RPCVariable<char*> rpcIPAddress(stripaddr, 20, "ipaddr");
 
 
 /*