From 436b7ee6227b4836a571a642fd26c5c7d6db26ad Mon Sep 17 00:00:00 2001 From: qwert Date: Thu, 4 Sep 2008 16:17:29 +0000 Subject: [PATCH] Add support for LM3S1968 board. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1780 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/cpu/detect.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bertos/cpu/detect.h b/bertos/cpu/detect.h index 91ad6be2..3b9ac1cf 100644 --- a/bertos/cpu/detect.h +++ b/bertos/cpu/detect.h @@ -94,12 +94,17 @@ #endif /* #elif Add other ARM families here */ + #elif defined (__ARM_LM3S1968__) + #define CPU_ARM_LM3S 1 + #define CPU_ARM_LM3S1968 1 + + #else #define CPU_ARM_AT91 0 #endif - #if CPU_ARM_AT91 + 0 /* Add other ARM families here */ != 1 + #if CPU_ARM_AT91 + CPU_ARM_LM3S + 0 /* Add other ARM families here */ != 1 #error ARM CPU configuration error #endif #else -- 2.25.1