From: asterix Date: Thu, 27 Nov 2008 17:43:22 +0000 (+0000) Subject: Add support for ATmega1281. X-Git-Tag: 2.1.0~739 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=9834fd2d0871aa31dc02263bcc3f4f9446298d58;p=bertos.git Add support for ATmega1281. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1943 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/examples/triface/triface.mk b/examples/triface/triface.mk index 871f02d0..3b0ae283 100644 --- a/examples/triface/triface.mk +++ b/examples/triface/triface.mk @@ -14,11 +14,24 @@ triface_DEBUG = 1 # Our target application TRG += triface +CPU = atmega1281 +triface_CROSS = avr- + +ifeq ($(CPU), atmega1281) +triface_hfuse = 0x98 +triface_lfuse = 0x3d +triface_efuse = 0x7f +triface_lock = 0xff +else triface_hfuse = 0x88 triface_lfuse = 0xff triface_efuse = 0xff triface_lock = 0x2f +endif + +triface_MCU = $(CPU) + triface_CSRC = \ examples/triface/triface.c \ examples/triface/protocol.c \ @@ -44,8 +57,6 @@ triface_PCSRC += bertos/mware/formatwr.c triface_CFLAGS = -O2 -D'ARCH=(ARCH_TRIFACE)' -fno-strict-aliasing -Iexamples/triface -Ibertos/cpu/avr triface_LDFLAGS = -Wl -triface_MCU = atmega64 -triface_CROSS = avr- # Set to 1 for debug builds boot_DEBUG = 0 @@ -53,7 +64,7 @@ boot_DEBUG = 0 # Our target application TRG += boot -boot_MCU = atmega64 +boot_MCU = $(CPU) boot_CSRC = \ examples/triface/boot/main.c \ bertos/net/xmodem.c \