# #-*- coding: utf-8 -*- # # \file # # # Cpu info of the ATMega328P. # # This file contain all info for the BeRTOS wizard. # # \author Luca Ottaviano # # # Import the common settings for the path. include("avr.common") # Short description of the cpu. CPU_DESC += [ "Arduino Duemilanove", "32 Kbyte in-System Programmable Flash", "2 Kbytes internal SRAM memory", "1 Kbyte EEPROM memory" ] # If we use the GCC compiler we should pass some flags. CORE_CPU = "atmega328p" include("avr_post.common")