Subversion Repositories FlightCtrl

Compare Revisions

Ignore whitespace Rev 624 → Rev 683

/branches/V0.68d Code Redesign killagreg/makefile
1,6 → 1,6
#--------------------------------------------------------------------
# MCU name
MCU = atmega644
MCU = atmega644p
F_CPU = 20000000
#-------------------------------------------------------------------
HAUPT_VERSION = 0
25,7 → 25,7
 
ifeq ($(MCU), atmega644p)
FUSE_SETTINGS = -u -U lfuse:w:0xff:m -U hfuse:w:0xdf:m
HEX_NAME = MEGA644
HEX_NAME = MEGA644p
endif
 
 
74,8 → 74,9
 
##########################################################################################################
# List C source files here. (C dependencies are automatically generated.)
SRC = main.c uart.c printf_P.c timer0.c analog.c menu.c
SRC = main.c uart.c printf_P.c timer0.c timer2.c analog.c menu.c
SRC += twimaster.c rc.c fc.c GPS.c spi.c
SRC += mymath.c ubx.c fifo.c uart1.c
 
##########################################################################################################