aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/MassStorage/MassStorage.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-03-09 22:02:29 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-03-09 22:02:29 +0000
commit3ea356a72054b540e1c529fee5f55b10324254a4 (patch)
tree53c0e2da94e0e9ba0bd48f709fc08e03ca89b506 /Demos/Device/LowLevel/MassStorage/MassStorage.c
parent8de8d7ab5a280ed9fc062c4bbc0f43350de1f383 (diff)
downloadlufa-3ea356a72054b540e1c529fee5f55b10324254a4.tar.gz
lufa-3ea356a72054b540e1c529fee5f55b10324254a4.tar.bz2
lufa-3ea356a72054b540e1c529fee5f55b10324254a4.zip
Added Dataflash operational checks and aborts to all projects using the Dataflash to ensure it is working correctly before use.
Diffstat (limited to 'Demos/Device/LowLevel/MassStorage/MassStorage.c')
-rw-r--r--Demos/Device/LowLevel/MassStorage/MassStorage.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/MassStorage.c b/Demos/Device/LowLevel/MassStorage/MassStorage.c
index e58ac745f..947636cf8 100644
--- a/Demos/Device/LowLevel/MassStorage/MassStorage.c
+++ b/Demos/Device/LowLevel/MassStorage/MassStorage.c
@@ -80,6 +80,13 @@ void SetupHardware(void)
Dataflash_Init();
USB_Init();
+ /* Check if the Dataflash is working, abort if not */
+ if (!(DataflashManager_CheckDataflashOperation()))
+ {
+ LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
+ for(;;);
+ }
+
/* Clear Dataflash sector protections, if enabled */
DataflashManager_ResetDataflashProtections();
}