From f8c584f3103f75c95ed0821e96c8675456b8f48e Mon Sep 17 00:00:00 2001 From: batt Date: Mon, 29 Mar 2010 21:55:09 +0000 Subject: [PATCH] Add LPC2378 CPU detection. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3312 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/cpu/detect.h | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/bertos/cpu/detect.h b/bertos/cpu/detect.h index c6de054b..19fb80b7 100644 --- a/bertos/cpu/detect.h +++ b/bertos/cpu/detect.h @@ -114,6 +114,13 @@ #define CPU_ARM_LM3S1968 0 #endif + #if defined(__ARM_LPC2378__) + #define CPU_ARM_LPC2 1 + #define CPU_ARM_LPC2378 1 + #else + #define CPU_ARM_LPC2378 0 + #endif + #if !defined(CPU_ARM_SAM7S_LARGE) #define CPU_ARM_SAM7S_LARGE 0 #endif @@ -132,20 +139,31 @@ #error ARM CPU configuration error #endif #define CPU_ARM_LM3S 0 + #define CPU_ARM_LPC2 0 #elif defined (CPU_ARM_LM3S) #if CPU_ARM_LM3S1968 + 0 != 1 #error Luminary ARM CPU configuration error #endif #define CPU_ARM_AT91 0 + #define CPU_ARM_LPC2 0 + #elif defined (CPU_ARM_LPC2) + + #if CPU_ARM_LPC2378 + 0 != 1 + #error NXP LPC2xxx ARM CPU configuration error + #endif + #define CPU_ARM_AT91 0 + #define CPU_ARM_LM3S 0 /* #elif Add other ARM families here */ #else #define CPU_ARM_AT91 0 #define CPU_ARM_LM3S 0 + #define CPU_ARM_LPC2 0 #endif - #if CPU_ARM_AT91 + CPU_ARM_LM3S + 0 /* Add other ARM families here */ != 1 + #if CPU_ARM_AT91 + CPU_ARM_LM3S \ + + CPU_ARM_LPC2 + 0 /* Add other ARM families here */ != 1 #error ARM CPU configuration error #endif #else @@ -154,6 +172,7 @@ /* ARM Families */ #define CPU_ARM_AT91 0 #define CPU_ARM_LM3S 0 + #define CPU_ARM_LPC2 0 /* SAM7 sub-families */ #define CPU_ARM_SAM7S_LARGE 0 @@ -170,6 +189,8 @@ #define CPU_ARM_AT91SAM7X512 0 #define CPU_ARM_LM3S1968 0 + + #define CPU_ARM_LPC2378 0 #endif #if (defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)) \ @@ -285,7 +306,7 @@ #define CPU_AVR 0 #define CPU_AVR_ATMEGA8 0 #define CPU_AVR_ATMEGA168 0 - #define CPU_AVR_ATMEGA328P 0 + #define CPU_AVR_ATMEGA328P 0 #define CPU_AVR_ATMEGA32 0 #define CPU_AVR_ATMEGA64 0 #define CPU_AVR_ATMEGA103 0 -- 2.25.1