Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface SimpleSocket mbed-rtos mbed
functions.h
00001 #include "mbed.h" 00002 00003 struct Function { 00004 char *name; 00005 void (*func)(); 00006 }; 00007 00008 void echoserver(); 00009 void echoclient(); 00010 void ntpclient(); 00011 void ntpclient2(); 00012 void supertweet(); 00013 void findbuddy(); 00014 void multicast(); 00015 void httpclient(); 00016 void webserver(); 00017 void webcontroller(); 00018 void udpsender(); 00019 void udpreceiver(); 00020 void supertweet(); 00021 00022 Function functions[] = { 00023 "Echo Server", echoserver, 00024 "Echo Client", echoclient, 00025 "NTP Client", ntpclient, 00026 "NTP Client2", ntpclient2, 00027 "Find Buddy", findbuddy, 00028 "Multicast", multicast, 00029 "HTTP Client", httpclient, 00030 "Web Server", webserver, 00031 "Web Controller", webcontroller, 00032 "UDP sender", udpsender, 00033 "UDP receiver", udpreceiver, 00034 "Super Tweet", supertweet, 00035 0, 0 00036 };
Generated on Mon Jul 18 2022 00:17:10 by
1.7.2