Subversion Repositories FlightCtrl

Rev

Rev 2148 | Rev 2191 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2148 Rev 2184
Line 3... Line 3...
3
MCU = atmega1284p
3
MCU = atmega1284p
4
#MCU = atmega644p
4
#MCU = atmega644p
5
F_CPU = 20000000
5
F_CPU = 20000000
6
#-------------------------------------------------------------------
6
#-------------------------------------------------------------------
7
VERSION_MAJOR    =   0
7
VERSION_MAJOR    =   0
8
VERSION_MINOR    =  88
8
VERSION_MINOR    =  89
9
VERSION_PATCH    =  12
9
VERSION_PATCH    =  1
10
VERSION_SERIAL_MAJOR = 11  	# Serial Protocol
10
VERSION_SERIAL_MAJOR = 11  	# Serial Protocol
11
VERSION_SERIAL_MINOR = 0  	# Serial Protocol
11
VERSION_SERIAL_MINOR = 0  	# Serial Protocol
12
NC_SPI_COMPATIBLE = 51		# Navi-Kompatibilität
12
NC_SPI_COMPATIBLE = 52		# Navi-Kompatibilität
13
#-------------------------------------------------------------------
13
#-------------------------------------------------------------------
14
# ATMEGA644: 63487 is maximum
14
# ATMEGA644: 63487 is maximum
15
#-------------------------------------------------------------------#-------------------------------------------------------------------
15
#-------------------------------------------------------------------#-------------------------------------------------------------------
16
# 0 a
16
# 0 a
17
# 1 b
17
# 1 b
Line 145... Line 145...
145
# List C source files here. (C dependencies are automatically generated.)
145
# List C source files here. (C dependencies are automatically generated.)
146
SRC = main.c uart.c timer0.c analog.c menu.c eeprom.c
146
SRC = main.c uart.c timer0.c analog.c menu.c eeprom.c
147
SRC += twimaster.c rc.c fc.c GPS.c spi.c led.c Spektrum.c
147
SRC += twimaster.c rc.c fc.c GPS.c spi.c led.c Spektrum.c
148
SRC += mymath.c jetimenu.c capacity.c debug.c
148
SRC += mymath.c jetimenu.c capacity.c debug.c
149
SRC += hottmenu.c sbus.c user_receiver.c
149
SRC += hottmenu.c sbus.c user_receiver.c
-
 
150
SRC += jeti_ex.c
150
##########################################################################################################
151
##########################################################################################################
Line 151... Line 152...
151
 
152
 
152
 
153