From: Dean Camera Date: Sun, 15 Nov 2009 13:09:02 +0000 (+0000) Subject: Fix incorrect compiler error message when F_CLOCK is not defined by the user (thanks... X-Git-Tag: LUFA-110528-BETA~826 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/ea5236b3e14976c1fc9b053c0a9294e8305e0a15?ds=sidebyside Fix incorrect compiler error message when F_CLOCK is not defined by the user (thanks to Dave Lyons). --- 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)