From a770213f69a326e2459f583df36c396007beb896 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 5 Feb 2025 14:12:32 +0100 Subject: [PATCH] Clarify that F_CPU is define as a compiler flag --- config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index 494e4f0..ad8b87c 100644 --- a/config.h +++ b/config.h @@ -1,6 +1,7 @@ #ifndef CONFIG_H #define CONFIG_H -//#define F_CPU 1600000UL +// This is passed as a compiler flag (CFLAGS += -DF_CPU=16000000UL) +// #define F_CPU 1600000UL #endif // CONFIG_H