Add flashing support for AVR.
[bertos.git] / bertos / cpu / avr / info / avr.common
index 24b56cc534c646adc0693d26049b8aa376edf026..924eea9a02dec02b77eb38fd05c93969cd91322a 100644 (file)
@@ -56,23 +56,19 @@ 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", "-I" + CPU_DIR + "avr/"]
-
-
-# If you want to use, one o more, of these modules in your project you should compile in
-# different way.
-PC_SRC = [ "kdebug",
-           "formatwr",
-           "sprintf",
-           "text_format",
-           "text" ]
+CPP_FLAGS = [ "-Os", "-fno-strict-aliasing", "-I" + CPU_DIR + "avr/"]
 
 SUPPORTED_DRV = [ "adc",
                  "flash",
@@ -84,4 +80,4 @@ SUPPORTED_DRV = [ "adc",
                  "ic2",
                  "kdebug",
                  "lcd_32122a" ]
-       
+