X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Favr%2Finfo%2Favr.common;h=f0fd278c7a2e78dfe7ff9945d411e1dd78133f01;hb=517cca1528492422030102f6c1a6691420c1c1a0;hp=41b8d0d299ed6efb39a2fcbcca86bb9231d6998d;hpb=388d3841c38fe298c64cf14dafeb7d9800c774e3;p=bertos.git diff --git a/bertos/cpu/avr/info/avr.common b/bertos/cpu/avr/info/avr.common index 41b8d0d2..f0fd278c 100644 --- a/bertos/cpu/avr/info/avr.common +++ b/bertos/cpu/avr/info/avr.common @@ -47,12 +47,12 @@ 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" +# Special CPU related tags. +CPU_TAGS = ["harvard", TOOLCHAIN] + # CPU default clock frequency CPU_DEFAULT_FREQ = "8000000UL" @@ -61,9 +61,9 @@ SCRIPT_DIR = CPU_DIR + "avr/scripts/" MK_FLASH_SCRIPT = PRG_SCRIPTS_DIR + "avr/flash.sh" MK_STOPFLASH_SCRIPT = PRG_SCRIPTS_DIR + "avr/stopflash.sh" -MK_DEBUG_SCRIPT = PRG_SCRIPTS_DIR + "avr/debug.sh" -MK_STOPDEBUG_SCRIPT = PRG_SCRIPTS_DIR + "avr/stopdebug.sh" +MK_DEBUG_SCRIPT = PRG_SCRIPTS_DIR + "nodebug.sh" +MK_STOPDEBUG_SCRIPT = PRG_SCRIPTS_DIR + "none.sh" # Common GCC flags. -MK_CPU_CPPFLAGS = "-Os -fno-strict-aliasing -I" + CPU_DIR + "avr/" +MK_CPU_CPPFLAGS = "-Os -I" + CPU_DIR + "avr/"