X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=app%2Ftriface%2Ftriface.mk;h=b7c19cc41968a156bff22fe71fa5f5f104645e6d;hb=cfd59c8655ed7268c9c48aa58560158d235bc0de;hp=bc0d7d044cebdb1e71cb724aed72e4efbe2f9b48;hpb=aad922a8b3d6433fb1987f75173044b61abf65c2;p=bertos.git diff --git a/app/triface/triface.mk b/app/triface/triface.mk index bc0d7d04..b7c19cc4 100644 --- a/app/triface/triface.mk +++ b/app/triface/triface.mk @@ -7,16 +7,6 @@ # # Author: Bernardo Innocenti # -# $Log$ -# Revision 1.3 2006/06/12 21:37:02 marco -# implemented some commands (ver and sleep) -# -# Revision 1.2 2006/06/01 12:29:21 marco -# Add first simple protocol command (version request). -# -# Revision 1.1 2006/05/18 00:41:47 bernie -# New triface devlib application. -# # @@ -26,25 +16,34 @@ triface_DEBUG = 1 # Our target application TRG += triface +triface_hfuse = 0x88 +triface_lfuse = 0xff +triface_efuse = 0xff +triface_lock = 0x2f triface_CSRC = \ app/triface/triface.c \ app/triface/protocol.c \ drv/timer.c \ drv/ser.c \ cpu/avr/drv/ser_avr.c \ + cpu/avr/drv/sipo.c \ mware/formatwr.c \ mware/hex.c \ mware/hashtable.c \ mware/readline.c \ mware/parser.c \ - -# drv/buzzer.c + mware/event.c \ + net/keytag.c \ + hw/hw_adc.c \ + drv/buzzer.c \ triface_PCSRC += mware/formatwr.c -#triface_CFLAGS = -O3 -D'ARCH=0' -Iapp/triface/hw -Iapp/triface -triface_CFLAGS = -O0 -D'ARCH=0' -Iapp/triface/hw -Iapp/triface -Icpu/avr -triface_MCU = atmega128 + +triface_CFLAGS = -O2 -D'ARCH=0' -Iapp/triface/hw -Iapp/triface -Icpu/avr +triface_LDFLAGS = -Wl + +triface_MCU = atmega64 # Debug stuff ifeq ($(triface_DEBUG),1)