Fix incorrect compiler error message when F_CLOCK is not defined by the user (thanks to Dave Lyons).
This commit is contained in:
parent
21cc9c9e19
commit
ea5236b3e1
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@
|
||||||
|
|
||||||
/* Preprocessor Checks and Defines: */
|
/* Preprocessor Checks and Defines: */
|
||||||
#if !defined(F_CLOCK)
|
#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
|
#endif
|
||||||
|
|
||||||
#if (F_CLOCK == 8000000)
|
#if (F_CLOCK == 8000000)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue