From ea5236b3e14976c1fc9b053c0a9294e8305e0a15 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 15 Nov 2009 13:09:02 +0000 Subject: Fix incorrect compiler error message when F_CLOCK is not defined by the user (thanks to Dave Lyons). --- LUFA/Drivers/USB/LowLevel/LowLevel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3