Versão atual 13-12-2013.

Dependencies:   EthernetInterface mbed-rtos mbed

Revision:
0:65c41a68b49a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Headers/TftpServer.h	Fri Dec 13 11:42:59 2013 +0000
@@ -0,0 +1,19 @@
+#include "mbed.h"
+#include "rtos.h"
+
+#include "EthernetInterface.h"
+
+
+
+
+class TftpServer
+{
+
+public:
+
+    static void TftpServerThread(void const *arg);
+    
+    static void TftpDoRead(Endpoint remote,char *buffer,int length);
+    static void TftpDoWrite(Endpoint remote,char *buffer,int length);
+
+};
\ No newline at end of file