X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Farm%2Finfo%2Fat91sam7.common;h=deea01c1992d82a5b17abb46f6bb62a0dd46faec;hb=61d659bbbdd1026c4b66a353989de19c2f6922ea;hp=a7b43673cc2086c77aef9cc0b9363e4b899aea31;hpb=19e4c0a22921d60236b51b57ccc38adaa4b887ee;p=bertos.git diff --git a/bertos/cpu/arm/info/at91sam7.common b/bertos/cpu/arm/info/at91sam7.common index a7b43673..deea01c1 100644 --- a/bertos/cpu/arm/info/at91sam7.common +++ b/bertos/cpu/arm/info/at91sam7.common @@ -31,39 +31,41 @@ # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # # --> -# +# # General CPU info denfinition for AT91SAM7 family. -# +# # This file contain all info for the BeRTOS wizard. # # \author Daniele Basile # # +# Import the common settings for the path. +include("../../path.common") + # Type of the toolchain we should use to compile the source for this CPU. TOOLCHAIN = "arm" -# If we use the GCC compiler we should pass some flags. +# If we use the GCC compiler we should pass some flags. CORE_CPU = "arm7tdmi" # Where are locate the bertos directories -BERTOS_CPU_DIR = "bertos/cpu" -BERTOS_SCRIPT_DIR = BERTOS_CPU_DIR + "arm/script/" -BERTOS_HW_DIR = BERTOS_CPU_DIR + "arm/hw/" -BERTOS_DRV_DIR = BERTOS_CPU_DIR + "arm/drv/" +SCRIPT_DIR = CPU_DIR + "arm/script/" +HW_DIR = CPU_DIR + "arm/hw/" +DRV_DIR = CPU_DIR + "arm/drv/" # Common GCC flags. CPPA_FLAGS = [ "-O0", "-g -gdwarf-2", "-g -gen-debug" ] CPP_FLAGS = [ "-O0", "-g3 -gdwarf-2", "-fverbose-asm" ] LD_FLAGS = [ "-nostartfiles", "-Wl,--no-warn-mismatch" ] # CRT file. -CPPA_SRC = [ BERTOS_HW_DIR + "crtat91sam7_rom.S"] +CPPA_SRC = [ HW_DIR + "crtat91sam7_rom.S"] # For this cpu core BeRTOS supports these drivers: SUPPORTED_DRV = [ "adc", "kdebug", "pwm", - "ser", + "ser", "stepper", "timer", "twi" ]