Fix up the incomplete Webserver project so that it integrates with the uIP stack correctly. Add simple HTTP webserver as a placeholder until FatFS can be integrated.
Begin to look into the RNDIS Host Class Driver, which seems to crash on test hardware after many packets have been received.
This commit is contained in:
parent
41ad6bd6d7
commit
03ee87b35a
11 changed files with 251 additions and 72 deletions
|
@ -43,7 +43,10 @@ char PROGMEM HTTP200Header[] = "HTTP/1.1 200 OK\r\n"
|
|||
"Server: LUFA RNDIS\r\n"
|
||||
"Content-type: text/html\r\n"
|
||||
"Connection: close\r\n\r\n";
|
||||
|
||||
|
||||
/** HTTP server response header, for transmission before a resource not found error. This indicates to the host that the given
|
||||
* given URL is invalid, and gives extra error information.
|
||||
*/
|
||||
char PROGMEM HTTP404Header[] = "HTTP/1.1 404 Not Found\r\n"
|
||||
"Server: LUFA RNDIS\r\n"
|
||||
"Connection: close\r\n\r\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue