Subversion Repositories FlightCtrl

Rev

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

Rev 2542 Rev 2543
Line 4... Line 4...
4
#MCU = atmega644p
4
#MCU = atmega644p
5
F_CPU = 20000000
5
F_CPU = 20000000
6
#-------------------------------------------------------------------
6
#-------------------------------------------------------------------
7
VERSION_MAJOR    =   2
7
VERSION_MAJOR    =   2
8
VERSION_MINOR    =  9
8
VERSION_MINOR    =  9
9
VERSION_PATCH    =  10
9
VERSION_PATCH    =  11
10
VERSION_SERIAL_MAJOR = 11  	# Serial Protocol to KopterTool -> do not change!
10
VERSION_SERIAL_MAJOR = 11  	# Serial Protocol to KopterTool -> do not change!
11
VERSION_SERIAL_MINOR = 0  	# Serial Protocol
11
VERSION_SERIAL_MINOR = 0  	# Serial Protocol
12
NC_SPI_COMPATIBLE = 75		# Navi-Kompatibilität
12
NC_SPI_COMPATIBLE = 75		# Navi-Kompatibilität
13
LIB_FC_COMPATIBLE = 7       # Library
13
LIB_FC_COMPATIBLE = 7       # Library
14
#-------------------------------------------------------------------
14
#-------------------------------------------------------------------
Line 145... Line 145...
145
##########################################################################################################
145
##########################################################################################################
146
# List C source files here. (C dependencies are automatically generated.)
146
# List C source files here. (C dependencies are automatically generated.)
147
SRC = main.c uart.c timer0.c analog.c menu.c eeprom.c
147
SRC = main.c uart.c timer0.c analog.c menu.c eeprom.c
148
SRC += twimaster.c rc.c fc.c GPS.c spi.c led.c Spektrum.c
148
SRC += twimaster.c rc.c fc.c GPS.c spi.c led.c Spektrum.c
149
SRC += mymath.c jetimenu.c capacity.c debug.c
149
SRC += mymath.c jetimenu.c capacity.c debug.c
150
SRC += hottmenu.c sbus.c user_receiver.c
150
SRC += hottmenu.c sbus.c user_receiver.c M-Link.c
151
SRC += jeti_ex.c
151
SRC += jeti_ex.c
152
##########################################################################################################
152
##########################################################################################################
Line 153... Line 153...
153
 
153