From d11ed10c5314c44dc01c06954d1d73d4894cbff8 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Thu, 28 Jan 2010 12:47:35 +0000 Subject: Add FatFS library to the Webserver project, extend the HTTP server so that it now serves files from the Dataflash. Add Mass Storage device mode class driver so that files can be loaded to the board Dataflash when inserted into a PC. --- Projects/Webserver/Lib/uip/conf/apps-conf.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Projects/Webserver/Lib/uip') diff --git a/Projects/Webserver/Lib/uip/conf/apps-conf.h b/Projects/Webserver/Lib/uip/conf/apps-conf.h index fc9727dcd..76cd93719 100644 --- a/Projects/Webserver/Lib/uip/conf/apps-conf.h +++ b/Projects/Webserver/Lib/uip/conf/apps-conf.h @@ -1,10 +1,13 @@ #ifndef __APPS_CONF_H__ #define __APPS_CONF_H__ + #include + typedef struct { uint8_t CurrentState; - char* SendPos; + FIL FileToSend; + bool FileOpen; } uip_tcp_appstate_t; typedef struct -- cgit v1.2.3