diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-29 17:04:04 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-29 17:04:04 +0000 |
commit | 7416ebd7c6591c95a0ae79be8ed10203714d385d (patch) | |
tree | c7458ce7e75c073431f2e97a9c5fad154719ae59 /Projects/Webserver | |
parent | bb85d083a7899890d0c14502078f6fa60a09d5df (diff) | |
download | lufa-7416ebd7c6591c95a0ae79be8ed10203714d385d.tar.gz lufa-7416ebd7c6591c95a0ae79be8ed10203714d385d.tar.bz2 lufa-7416ebd7c6591c95a0ae79be8ed10203714d385d.zip |
Update StaticAnalysisTest to check for missing header files. Fix found incorrect header file paths in the demos and projects.
Diffstat (limited to 'Projects/Webserver')
-rw-r--r-- | Projects/Webserver/Lib/DataflashManager.h | 2 | ||||
-rw-r--r-- | Projects/Webserver/Lib/uIPManagement.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Projects/Webserver/Lib/DataflashManager.h b/Projects/Webserver/Lib/DataflashManager.h index bdc27a2a0..af76f7f62 100644 --- a/Projects/Webserver/Lib/DataflashManager.h +++ b/Projects/Webserver/Lib/DataflashManager.h @@ -39,7 +39,7 @@ /* Includes: */ #include <avr/io.h> - #include "Descriptors.h" + #include "../Descriptors.h" #include <LUFA/Common/Common.h> #include <LUFA/Drivers/USB/USB.h> diff --git a/Projects/Webserver/Lib/uIPManagement.h b/Projects/Webserver/Lib/uIPManagement.h index d51df090b..390d3c448 100644 --- a/Projects/Webserver/Lib/uIPManagement.h +++ b/Projects/Webserver/Lib/uIPManagement.h @@ -44,10 +44,10 @@ #include <uip-split.h> #include <timer.h> - #include "Lib/DHCPClientApp.h" - #include "Lib/DHCPServerApp.h" - #include "Lib/HTTPServerApp.h" - #include "Lib/TELNETServerApp.h" + #include "DHCPClientApp.h" + #include "DHCPServerApp.h" + #include "HTTPServerApp.h" + #include "TELNETServerApp.h" /* Macros: */ /** IP address that the webserver should use once connected to a RNDIS device (when DHCP is disabled). */ |