projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed ISR definition conflict in the XPLAIN bridge between the software UART and...
[pub/USBasp.git]
/
Projects
/
Webserver
/
Lib
/
HTTPServerApp.c
diff --git
a/Projects/Webserver/Lib/HTTPServerApp.c
b/Projects/Webserver/Lib/HTTPServerApp.c
index
646410f
..
6378ebe
100644
(file)
--- a/
Projects/Webserver/Lib/HTTPServerApp.c
+++ b/
Projects/Webserver/Lib/HTTPServerApp.c
@@
-77,7
+77,7
@@
const MIME_Type_t MIMETypes[] =
{.Extension = "pdf", .MIMEType = "application/pdf"},
};
{.Extension = "pdf", .MIMEType = "application/pdf"},
};
-/** FATFs structure to hold the internal state of the FAT driver for the
d
ataflash contents. */
+/** FATFs structure to hold the internal state of the FAT driver for the
D
ataflash contents. */
FATFS DiskFATState;
FATFS DiskFATState;
@@
-87,7
+87,7
@@
void HTTPServerApp_Init(void)
/* Listen on port 80 for HTTP connections from hosts */
uip_listen(HTONS(HTTP_SERVER_PORT));
/* Listen on port 80 for HTTP connections from hosts */
uip_listen(HTONS(HTTP_SERVER_PORT));
- /* Mount the
d
ataflash disk via FatFS */
+ /* Mount the
D
ataflash disk via FatFS */
f_mount(0, &DiskFATState);
}
f_mount(0, &DiskFATState);
}