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 /Demos/Device/ClassDriver/MassStorage | |
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 'Demos/Device/ClassDriver/MassStorage')
-rw-r--r-- | Demos/Device/ClassDriver/MassStorage/Lib/DataflashManager.h | 4 | ||||
-rw-r--r-- | Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Demos/Device/ClassDriver/MassStorage/Lib/DataflashManager.h b/Demos/Device/ClassDriver/MassStorage/Lib/DataflashManager.h index 3144c87ad..18606eaf1 100644 --- a/Demos/Device/ClassDriver/MassStorage/Lib/DataflashManager.h +++ b/Demos/Device/ClassDriver/MassStorage/Lib/DataflashManager.h @@ -39,8 +39,8 @@ /* Includes: */ #include <avr/io.h> - #include "MassStorage.h" - #include "Descriptors.h" + #include "../MassStorage.h" + #include "../Descriptors.h" #include <LUFA/Common/Common.h> #include <LUFA/Drivers/USB/USB.h> diff --git a/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h b/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h index 635bd067f..d44662382 100644 --- a/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h +++ b/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h @@ -42,8 +42,8 @@ #include <LUFA/Drivers/USB/USB.h> - #include "MassStorage.h" - #include "Descriptors.h" + #include "../MassStorage.h" + #include "../Descriptors.h" #include "DataflashManager.h" /* Macros: */ |