Subversion Repositories FlightCtrl

Rev

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

Rev 2031 Rev 2034
Line 2... Line 2...
2
# MCU name
2
# MCU name
3
MCU = atmega1284p
3
MCU = atmega1284p
4
#MCU = atmega644p
4
#MCU = atmega644p
5
F_CPU = 20000000
5
F_CPU = 20000000
6
#-------------------------------------------------------------------
6
#-------------------------------------------------------------------
7
						# Achtung: auch das public-makefile ändern!
-
 
8
VERSION_MAJOR    =   0
7
VERSION_MAJOR    =   0
9
VERSION_MINOR    =  87
8
VERSION_MINOR    =  87
10
VERSION_PATCH    =  5
9
VERSION_PATCH    =  7
11
VERSION_SERIAL_MAJOR = 11  	# Serial Protocol
10
VERSION_SERIAL_MAJOR = 11  	# Serial Protocol
12
VERSION_SERIAL_MINOR = 0  	# Serial Protocol
11
VERSION_SERIAL_MINOR = 0  	# Serial Protocol
13
NC_SPI_COMPATIBLE = 29		# Navi-Kompatibilität
12
NC_SPI_COMPATIBLE = 30		# Navi-Kompatibilität
-
 
13
#-------------------------------------------------------------------
-
 
14
# ATMEGA644: 63487 is maximum
-
 
15
#-------------------------------------------------------------------
-
 
16
# 0 a
-
 
17
# 1 b
-
 
18
# 2 c
-
 
19
# 3 d
-
 
20
# 4 e
-
 
21
# 5 f
-
 
22
# 6 g
-
 
23
# 7 h
-
 
24
# 8 i
-
 
25
# 9 j
-
 
26
# 10 k
-
 
27
# 11 L
14
#-------------------------------------------------------------------
28
#-------------------------------------------------------------------
Line 15... Line 29...
15
 
29
 
16
# get SVN revision
30
# get SVN revision
Line 130... Line 144...
130
##########################################################################################################
144
##########################################################################################################
131
# List C source files here. (C dependencies are automatically generated.)
145
# List C source files here. (C dependencies are automatically generated.)
132
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
133
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
134
SRC += mymath.c jetimenu.c capacity.c debug.c
148
SRC += mymath.c jetimenu.c capacity.c debug.c
135
SRC += hottmenu.c sbus.c
149
SRC += hottmenu.c sbus.c user_receiver.c
136
 
-
 
137
##########################################################################################################
150
##########################################################################################################
Line 138... Line 151...
138
 
151
 
139
 
152