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:
Sun Jan 25 11:49:44 2015 +0000
Revision:
32:db2e8ea06ee1
Parent:
31:2e4b6de6c2f3
Child:
33:c906ccc220ba
TCP client processes RPC command, similar to TCP/UDP server

Who changed what in which revision?

UserRevisionLine numberNew contents of line
olympux 19:05934ee9ee67 1 Features
olympux 28:00c0c20d03c1 2 + NNIO module with NNIO protocol v2.0.
olympux 28:00c0c20d03c1 3 + Support RPC control commands using TCP/UDP server. No support RPC with TCP client.
olympux 23:47ee805435b1 4
olympux 28:00c0c20d03c1 5 v0.1 (29/12/2014)
olympux 28:00c0c20d03c1 6 + Imported F103_NNIO rev27:22f289beceb8
olympux 28:00c0c20d03c1 7 + Modified: process_control_command() with return value.
olympux 28:00c0c20d03c1 8 0 if NNIO protocol or RPC protocol without reply; length of RPC outbut buffer; or -1 if RPC failed.
olympux 29:bc052f283ada 9 + Modified: TCP server now checks to return data to client.
olympux 29:bc052f283ada 10 + Modified: use device description instead of device config code in Discovery command.
olympux 29:bc052f283ada 11 + Tested: working with ConfigurationTool v2.0 and AlarmMonitoring v1.1.
olympux 29:bc052f283ada 12
olympux 29:bc052f283ada 13 v1.0 (06/01/2014)
olympux 30:15e23257e786 14 + Added: RPC command replies as following object_name:reply_value
olympux 31:2e4b6de6c2f3 15 + Modified: clean code in my_eeprom_funcs and main.cpp
olympux 31:2e4b6de6c2f3 16
olympux 31:2e4b6de6c2f3 17 v1.1 (24/01/2015)
olympux 31:2e4b6de6c2f3 18 + Modified: control command is able to be processed by both TCP and UDP.
olympux 32:db2e8ea06ee1 19 Only one network output buffer is used for RPC-style and NNIO protocols.
olympux 32:db2e8ea06ee1 20 + Modified: process RPC-style command in tcp client, similar to TCP/UDP server.