Add cpu descriptions.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 19 Dec 2008 15:13:37 +0000 (15:13 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 19 Dec 2008 15:13:37 +0000 (15:13 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2112 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/avr/info/ATmega103.cdef
bertos/cpu/avr/info/ATmega128.cdef
bertos/cpu/avr/info/ATmega1281.cdef
bertos/cpu/avr/info/ATmega168.cdef
bertos/cpu/avr/info/ATmega32.cdef
bertos/cpu/avr/info/ATmega64.cdef
bertos/cpu/avr/info/ATmega8.cdef
bertos/cpu/avr/info/avr.common

index 1ae2b6ac00274255c65727ffb072cdb65429f15a..21598a3833e2fe30217a4e4cfe44f01d223b0a3c 100644 (file)
 # Import the common settings for the path.
 include("avr.common")
 
+# Short description of the cpu.
+CPU_DESC += [ "128 Kbyte in-System Programmable Flash",
+             "4 Kbytes internal SRAM memory",
+             "4 Kbytes EEPROM memory" ]
+
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "atmega103"
 
index b8a94053fbbcea7251652bc3ed501ae70ebe9c25..8665004095ebdaea304e985fdd28861a019e7593 100644 (file)
 # Import the common settings for the path.
 include("avr.common")
 
+# Short description of the cpu.
+CPU_DESC += [ "128 Kbyte in-System Programmable Flash",
+             "4 Kbytes internal SRAM memory",
+             "4 bytes EEPROM memory" ]
+
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "atmega128"
 
index 7359badf285189188657ec412800ff1b30505e4f..e03338fdefa73aabffcf1522778f047ad8c0ab71 100644 (file)
 # Import the common settings for the path.
 include("avr.common")
 
+# Short description of the cpu.
+CPU_DESC += [ "128 Kbyte in-System Programmable Flash",
+             "8 Kbytes internal SRAM memory",
+             "4 Kbytes EEPROM memory" ]
+
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "atmega1281"
 
index 57e89e6b34236dc529625a5d3cfc891676a0c894..27771d1825194f696dd20301cc350dce9e4e85e0 100644 (file)
 # Import the common settings for the path.
 include("avr.common")
 
+# Short description of the cpu.
+CPU_DESC += [ "16 Kbyte in-System Programmable Flash",
+             "1 Kbytes internal SRAM memory",
+             "512 bytes EEPROM memory" ]
+
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "atmega168"
 
index 355e02e6ded337caca483f31c9adde0eaa7d0334..e3c50e955d28e3744e06aec029b7aced8c53da81 100644 (file)
 # Import the common settings for the path.
 include("avr.common")
 
+# Short description of the cpu.
+CPU_DESC += [ "32 Kbyte in-System Programmable Flash",
+             "2 Kbytes internal SRAM memory",
+             "1 Kbytes EEPROM memory" ]
+
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "atmega32"
 
index bfa359d0dbccf699a48b54785526e3e9fa1df3a2..3bb4193f9c8cf6bc4a754d983427b7a7aa5a37b9 100644 (file)
 # Import the common settings for the path.
 include("avr.common")
 
+# Short description of the cpu.
+CPU_DESC += [ "64 Kbyte in-System Programmable Flash",
+             "4 Kbytes internal SRAM memory",
+             "2 Kbytes EEPROM memory" ]
+
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "atmega64"
 
index 0a2ec46271bbb798d59d23144493fc888660f411..87d43426a6f247ca3de4049488fe36fe4bc05f50 100644 (file)
 # Import the common settings for the path.
 include("avr.common")
 
+# Short description of the cpu.
+CPU_DESC += [ "8 Kbyte in-System Programmable Flash",
+             "1 Kbytes internal SRAM memory",
+             "512 bytes EEPROM memory" ]
+
 # If we use the GCC compiler we should pass some flags.
 CORE_CPU = "atmega8"
 
index e4837a79915de406ca36f96296b4fa58888e8a62..690850fead47235f646aa58b92b19ade3d5f87a8 100644 (file)
 # Import the common settings for the path.
 include("../../path.common")
 
+# Short description of the cpu.
+CPU_DESC = [ "ATMEL AVR Microcontroller ",
+            "8-bit RISC Architecture"]
+
 # Type of the toolchain we should use to compile the source for this CPU.
 TOOLCHAIN = "avr"