diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-02-29 17:04:04 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-02-29 17:04:04 +0000 |
| commit | e9e6d1992dec544dead4ea3953175362a161a5d4 (patch) | |
| tree | c7458ce7e75c073431f2e97a9c5fad154719ae59 /Demos/Device/LowLevel | |
| parent | 2f2a53b3721a36b93465461695d8ec37cdc0983e (diff) | |
Update StaticAnalysisTest to check for missing header files. Fix found incorrect header file paths in the demos and projects.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2076 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/LowLevel')
| -rw-r--r-- | Demos/Device/LowLevel/MassStorage/Lib/DataflashManager.h | 4 | ||||
| -rw-r--r-- | Demos/Device/LowLevel/MassStorage/Lib/SCSI.h | 4 | ||||
| -rw-r--r-- | Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/Lib/DataflashManager.h b/Demos/Device/LowLevel/MassStorage/Lib/DataflashManager.h index ab68049f..d70a86c1 100644 --- a/Demos/Device/LowLevel/MassStorage/Lib/DataflashManager.h +++ b/Demos/Device/LowLevel/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/LowLevel/MassStorage/Lib/SCSI.h b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h index 244daaa9..b0065cd1 100644 --- a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h +++ b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h @@ -44,8 +44,8 @@ #include <LUFA/Drivers/USB/USB.h> #include <LUFA/Drivers/Board/LEDs.h> - #include "MassStorage.h" - #include "Descriptors.h" + #include "../MassStorage.h" + #include "../Descriptors.h" #include "DataflashManager.h" /* Macros: */ diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h b/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h index cd2ff557..8bf8bdfa 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h @@ -40,7 +40,7 @@ #include <avr/io.h> #include <stdbool.h> - #include "RNDISEthernet.h" + #include "../RNDISEthernet.h" #include "Ethernet.h" /* External Variables: */ |
