aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Incomplete
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-03-09 05:15:08 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-03-09 05:15:08 +0000
commitce260ae786326b9f1e476fa3e580ecf9176889c2 (patch)
tree9d61be0f91806aa41ba268a53439624ef85baa83 /Projects/Incomplete
parenta61c7f671d7dc0f775f730d07ae764d03bdf3aba (diff)
downloadlufa-ce260ae786326b9f1e476fa3e580ecf9176889c2.tar.gz
lufa-ce260ae786326b9f1e476fa3e580ecf9176889c2.tar.bz2
lufa-ce260ae786326b9f1e476fa3e580ecf9176889c2.zip
Webserver project now uses the board LEDs to indicate the current IP configuration state.
Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode.
Diffstat (limited to 'Projects/Incomplete')
-rw-r--r--Projects/Incomplete/StandaloneProgrammer/Lib/PetiteFATFs/diskio.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Projects/Incomplete/StandaloneProgrammer/Lib/PetiteFATFs/diskio.c b/Projects/Incomplete/StandaloneProgrammer/Lib/PetiteFATFs/diskio.c
index bcf1674f9..c0393dd84 100644
--- a/Projects/Incomplete/StandaloneProgrammer/Lib/PetiteFATFs/diskio.c
+++ b/Projects/Incomplete/StandaloneProgrammer/Lib/PetiteFATFs/diskio.c
@@ -41,8 +41,6 @@ DRESULT disk_readp (
ErrorCode = RES_NOTRDY;
else if (MS_Host_ReadDeviceBlocks(&DiskHost_MS_Interface, 0, sector, 1, 512, BlockTemp))
ErrorCode = RES_ERROR;
-
- MS_Host_ReadDeviceBlocks(&DiskHost_MS_Interface, 0, sector, 1, 512, BlockTemp);
#endif
}
else