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

Committer:
olympux
Date:
Tue Jul 19 07:50:53 2016 +0000
Revision:
45:8d18a95fcf8a
Parent:
42:d0ff08711ca5
Child:
46:971bdaa3507c
Tested

Who changed what in which revision?

UserRevisionLine numberNew contents of line
olympux 42:d0ff08711ca5 1 Forked of NNIO-8822
olympux 42:d0ff08711ca5 2 Combined with "RPC over HTTP server" and "Improved mbed RPC" projects
olympux 39:083cf93121a9 3
olympux 42:d0ff08711ca5 4 # Modifications
olympux 38:f8735ae519aa 5
olympux 40:c966abbe2d62 6 1. Updated Formatter.c to use eth.getIPAddress()
olympux 42:d0ff08711ca5 7 2. Added creating RPC object AnalogIn
olympux 40:c966abbe2d62 8 - to HTML code in Formatter.c
olympux 40:c966abbe2d62 9 - to RPCType.c
olympux 42:d0ff08711ca5 10 3. Added read/write RPC string variable over HTTP
olympux 42:d0ff08711ca5 11
olympux 42:d0ff08711ca5 12 # Releases
olympux 42:d0ff08711ca5 13
olympux 42:d0ff08711ca5 14 ## v1.0.0 (16/06/2016)
olympux 42:d0ff08711ca5 15
olympux 42:d0ff08711ca5 16 Initial version
olympux 42:d0ff08711ca5 17
olympux 45:8d18a95fcf8a 18 Features
olympux 45:8d18a95fcf8a 19
olympux 42:d0ff08711ca5 20 - Use eeprom for device configuration
olympux 42:d0ff08711ca5 21 - HTTP server
olympux 42:d0ff08711ca5 22 - RPC over HTTP:
olympux 42:d0ff08711ca5 23 + Support creating objects including AnalogIn
olympux 42:d0ff08711ca5 24 + Support RPC string variable
olympux 45:8d18a95fcf8a 25 - Additional RPC commands:
olympux 45:8d18a95fcf8a 26 + Set ip address: /ipaddr/write 192.168.0.121
olympux 45:8d18a95fcf8a 27 + Save ip address: /saveipaddr/run
olympux 45:8d18a95fcf8a 28 + Enable configured flag: /setconf/run
olympux 45:8d18a95fcf8a 29 + Disable configured flag: /resetconf/run
olympux 45:8d18a95fcf8a 30
olympux 42:d0ff08711ca5 31
olympux 42:d0ff08711ca5 32 Bug fixes
olympux 42:d0ff08711ca5 33
olympux 42:d0ff08711ca5 34 - Creating RPC object AnalogIn at PC_0 caused watchdog resets. FIXED in rev41