aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/LowLevel
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-15 13:09:02 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-15 13:09:02 +0000
commitea5236b3e14976c1fc9b053c0a9294e8305e0a15 (patch)
tree872a1e7f74bb0b5b3e5f60014e6175711c41e272 /LUFA/Drivers/USB/LowLevel
parent21cc9c9e19ce6bd757410cc6da29b5dc2ee8041c (diff)
downloadlufa-ea5236b3e14976c1fc9b053c0a9294e8305e0a15.tar.gz
lufa-ea5236b3e14976c1fc9b053c0a9294e8305e0a15.tar.bz2
lufa-ea5236b3e14976c1fc9b053c0a9294e8305e0a15.zip
Fix incorrect compiler error message when F_CLOCK is not defined by the user (thanks to Dave Lyons).
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel')
-rw-r--r--LUFA/Drivers/USB/LowLevel/LowLevel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/LowLevel.h b/LUFA/Drivers/USB/LowLevel/LowLevel.h
index b8f7b9de1..e2610c528 100644
--- a/LUFA/Drivers/USB/LowLevel/LowLevel.h
+++ b/LUFA/Drivers/USB/LowLevel/LowLevel.h
@@ -71,7 +71,7 @@
/* Preprocessor Checks and Defines: */
#if !defined(F_CLOCK)
- #error F_CLOCK is not defined. You must device F_CLOCK to the frequency of the unprescaled input clock in your project makefile.
+ #error F_CLOCK is not defined. You must define F_CLOCK to the frequency of the unprescaled input clock in your project makefile.
#endif
#if (F_CLOCK == 8000000)