Subversion Repositories FlightCtrl

Rev

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

Rev 189 Rev 330
Line 2... Line 2...
2
# MCU name
2
# MCU name
3
MCU = atmega644
3
MCU = atmega644
4
F_CPU = 20000000
4
F_CPU = 20000000
5
#-------------------------------------------------------------------
5
#-------------------------------------------------------------------
6
HAUPT_VERSION    =   0
6
HAUPT_VERSION    =   0
7
NEBEN_VERSION    =  64
7
NEBEN_VERSION    =  02
8
VERSION_KOMPATIBEL = 5  # PC-Kompatibilität
8
VERSION_KOMPATIBEL = 5  # PC-Kompatibilität
9
#-------------------------------------------------------------------
9
#-------------------------------------------------------------------
Line 10... Line 10...
10
 
10
 
11
ifeq ($(MCU), atmega32)
11
ifeq ($(MCU), atmega32)
Line 44... Line 44...
44
OPT = s
44
OPT = s
Line 45... Line 45...
45
 
45
 
46
##########################################################################################################
46
##########################################################################################################
47
# List C source files here. (C dependencies are automatically generated.)
47
# List C source files here. (C dependencies are automatically generated.)
48
SRC = main.c uart.c  printf_P.c timer0.c  analog.c menu.c 
48
SRC = main.c uart.c  printf_P.c timer0.c  analog.c menu.c 
Line 49... Line 49...
49
SRC += twimaster.c rc.c fc.c GPS.c
49
SRC += twimaster.c rc.c fc.c GPS.c math.c
Line 50... Line 50...
50
 
50