diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-28 12:47:35 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-28 12:47:35 +0000 |
commit | d11ed10c5314c44dc01c06954d1d73d4894cbff8 (patch) | |
tree | fb771919dd20943a820f37d62a9488e32d07950a /Projects/Webserver/Lib/uip | |
parent | d26a9ed5fd6fc60a0dfa61d04f5ae2bd7163a85d (diff) | |
download | lufa-d11ed10c5314c44dc01c06954d1d73d4894cbff8.tar.gz lufa-d11ed10c5314c44dc01c06954d1d73d4894cbff8.tar.bz2 lufa-d11ed10c5314c44dc01c06954d1d73d4894cbff8.zip |
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.
Diffstat (limited to 'Projects/Webserver/Lib/uip')
-rw-r--r-- | Projects/Webserver/Lib/uip/conf/apps-conf.h | 5 |
1 files changed, 4 insertions, 1 deletions
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 <ff.h>
+
typedef struct
{
uint8_t CurrentState;
- char* SendPos;
+ FIL FileToSend;
+ bool FileOpen;
} uip_tcp_appstate_t;
typedef struct
|