X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Fdetect.h;h=3c4712d25f1fd72f8fbcfcd7657f75274a05d0b3;hb=41d14f76b5f57cce434048251df63eb6bbdb1df0;hp=c6de054b189732fcbec2a8d0507232dffde62bf1;hpb=86abd5b97ebd9132d0d62b59374be037f98771ae;p=bertos.git diff --git a/bertos/cpu/detect.h b/bertos/cpu/detect.h index c6de054b..3c4712d2 100644 --- a/bertos/cpu/detect.h +++ b/bertos/cpu/detect.h @@ -39,7 +39,13 @@ #if defined(__arm__) /* GCC */ \ || defined(__ARM4TM__) /* IAR: defined for all cores >= 4tm */ #define CPU_ARM 1 - #define CPU_ID arm + + // Cortex-M3 core family + #if defined(__ARM_LM3S1968__) + #define CPU_ID lm3s + #else + #define CPU_ID arm + #endif // AT91SAM7S core family #if defined(__ARM_AT91SAM7S32__) @@ -114,6 +120,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 +145,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 +178,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 +195,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 +312,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