# #-*- coding: utf-8 -*- # # \file # # # Cpu info of the ATxmega32D4. # # This file contain all info for the BeRTOS wizard. # # \author Onno # # # Import the common settings for the path. include("avr.common") # Short description of the cpu. CPU_DESC += [ "32 Kbyte in-System Programmable Flash", "4 Kbyte Boot Code Section with Independent Lock Bits", "4 Kbyte internal SRAM memory", "1 Kbyte EEPROM memory" ] # If we use the GCC compiler we should pass some flags. CORE_CPU = "atxmega32d4" HW_DIR = CPU_DIR + "avr/hw/" MK_CPU_CSRC = HW_DIR + "init_xmega.c" # Special CPU related tags. CPU_TAGS += ["xmega32d"] include("avr_post.common")