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:
Fri Aug 19 20:17:00 2016 +0000
Revision:
47:d92d2c5b8073
Parent:
40:c966abbe2d62
forked to create a new repo for webserver on F103+W5500. No other functions

Who changed what in which revision?

UserRevisionLine numberNew contents of line
olympux 40:c966abbe2d62 1 #ifndef RPCTYPE_H
olympux 40:c966abbe2d62 2 #define RPCTYPE_H
olympux 40:c966abbe2d62 3
olympux 40:c966abbe2d62 4 #include <list>
olympux 40:c966abbe2d62 5
olympux 40:c966abbe2d62 6 class RPCType
olympux 40:c966abbe2d62 7 {
olympux 40:c966abbe2d62 8 public :
olympux 40:c966abbe2d62 9
olympux 40:c966abbe2d62 10 static RPCType& instance();
olympux 40:c966abbe2d62 11
olympux 40:c966abbe2d62 12 void register_types();
olympux 40:c966abbe2d62 13
olympux 40:c966abbe2d62 14 bool is_supported_type(char *type);
olympux 40:c966abbe2d62 15
olympux 40:c966abbe2d62 16 private :
olympux 40:c966abbe2d62 17
olympux 40:c966abbe2d62 18 RPCType();
olympux 40:c966abbe2d62 19 std::list<char*> supported_types;
olympux 40:c966abbe2d62 20 };
olympux 40:c966abbe2d62 21
olympux 40:c966abbe2d62 22 #endif
olympux 40:c966abbe2d62 23