Skip to content
Snippets Groups Projects
Commit ea5236b3 authored by Dean Camera's avatar Dean Camera
Browse files

Fix incorrect compiler error message when F_CLOCK is not defined by the user...

Fix incorrect compiler error message when F_CLOCK is not defined by the user (thanks to Dave Lyons).
parent 21cc9c9e
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ ...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment