X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Favr%2Finfo%2Favr.common;h=924eea9a02dec02b77eb38fd05c93969cd91322a;hb=388f7931a07e3bf406978bdf788d34e86f33bf53;hp=690850fead47235f646aa58b92b19ade3d5f87a8;hpb=7d79dfd13c8c9f191a7316544b4d95872329e5d0;p=bertos.git diff --git a/bertos/cpu/avr/info/avr.common b/bertos/cpu/avr/info/avr.common index 690850fe..924eea9a 100644 --- a/bertos/cpu/avr/info/avr.common +++ b/bertos/cpu/avr/info/avr.common @@ -47,26 +47,28 @@ include("../../path.common") CPU_DESC = [ "ATMEL AVR Microcontroller ", "8-bit RISC Architecture"] +# Special CPU related tags. +CPU_TAGS = ["harvard"] + # Type of the toolchain we should use to compile the source for this CPU. TOOLCHAIN = "avr" +# Name of the flag used by the build system to pass to the compiler the CPU type. +CPU_FLAG_NAME = "MCU" + +# CPU default clock frequency +CPU_DEFAULT_FREQ = "8000000UL" + # Where are locate the bertos directories -SCRIPT_DIR = CPU_DIR + "avr/script/" +SCRIPT_DIR = CPU_DIR + "avr/scripts/" HW_DIR = CPU_DIR + "avr/hw/" DRV_DIR = CPU_DIR + "avr/drv/" +FLASH_SCRIPT = SCRIPT_DIR + "flash.sh" +DEBUG_SCRIPT = SCRIPT_DIR + "debug.sh" # Common GCC flags. -C_FLAGS = [ "-O0", "-fno-strict-aliasing"] - - -# If you want to use, one o more, of these modules in your project you should compile in -# different way. -PC_SRC = [ "kdebug", - "formartwr", - "sprintf", - "text_format", - "text" ] +CPP_FLAGS = [ "-Os", "-fno-strict-aliasing", "-I" + CPU_DIR + "avr/"] SUPPORTED_DRV = [ "adc", "flash", @@ -78,4 +80,4 @@ SUPPORTED_DRV = [ "adc", "ic2", "kdebug", "lcd_32122a" ] - +