Subversion Repositories FlightCtrl

Rev

Rev 2044 | Rev 2048 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1612 dongfang 1
#--------------------------------------------------------------------
2
# MCU name
1969 - 3
MCU = atmega644p
1612 dongfang 4
F_CPU = 20000000
5
#-------------------------------------------------------------------
6
VERSION_MAJOR    =  0
1967 - 7
VERSION_MINOR    =  1
8
VERSION_PATCH    =  0
1612 dongfang 9
 
10
VERSION_SERIAL_MAJOR = 10	# Serial Protocol Major Version
2033 - 11
VERSION_SERIAL_MINOR = 1	# Serial Protocol Minor Version
12
NC_SPI_COMPATIBLE =    6 	# SPI Protocol Version
1612 dongfang 13
 
14
#-------------------------------------------------------------------
15
#OPTIONS
16
 
17
# Use one of the extensions for a gps solution
1801 - 18
#EXT = NAVICTRL
2039 - 19
EXT = DIRECT_GPS
20
#EXT =
1612 dongfang 21
 
2044 - 22
GYRO=ENC-03_FC1.3
23
GYRO_HW_NAME=ENC
24
GYRO_HW_FACTOR=1.304f
25
GYRO_PITCHROLL_CORRECTION=1.0f
26
GYRO_YAW_CORRECTION=1.0f
27
 
28
#GYRO=ADXRS610_FC2.0
29
#GYRO_HW_NAME=ADXR
30
#GYRO_HW_FACTOR=1.2288f
2026 - 31
#GYRO_PITCHROLL_CORRECTION=1.0f
32
#GYRO_YAW_CORRECTION=1.0f
33
 
2019 - 34
#GYRO=invenSense
35
#GYRO_HW_NAME=Isense
36
#GYRO_HW_FACTOR=0.6827f
37
#GYRO_PITCHROLL_CORRECTION=1.0f
38
#GYRO_YAW_CORRECTION=1.0f
1775 - 39
 
1612 dongfang 40
#-------------------------------------------------------------------
41
# get SVN revision
42
REV=0001
43
#$(shell sh -c "cat .svn/entries | sed -n '4p'")
44
 
45
ifeq ($(MCU), atmega644)
46
 FUSE_SETTINGS = -u -U lfuse:w:0xff:m -U hfuse:w:0xdf:m
2039 - 47
 HEX_NAME = MEGA644_$(EXT)_$(GYRO)
1612 dongfang 48
endif
49
 
50
ifeq ($(MCU), atmega644p)
51
 FUSE_SETTINGS = -u -U lfuse:w:0xff:m -U hfuse:w:0xdf:m
2039 - 52
 HEX_NAME = MEGA644p_$(EXT)_$(GYRO)
1612 dongfang 53
endif
54
 
55
 
56
ifeq ($(F_CPU), 20000000)
57
 QUARZ = 20MHZ
58
endif
59
 
60
 
61
# Output format. (can be srec, ihex, binary)
62
FORMAT = ihex
63
 
64
# Target file name (without extension).
65
 
66
ifeq ($(VERSION_PATCH), 0)
67
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)a_SVN$(REV)
68
endif
69
ifeq ($(VERSION_PATCH), 1)
70
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)b_SVN$(REV)
71
endif
72
ifeq ($(VERSION_PATCH), 2)
73
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)c_SVN$(REV)
74
endif
75
ifeq ($(VERSION_PATCH), 3)
76
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)d_SVN$(REV)
77
endif
78
ifeq ($(VERSION_PATCH), 4)
79
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)e_SVN$(REV)
80
endif
81
ifeq ($(VERSION_PATCH), 5)
82
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)f_SVN$(REV)
83
endif
84
ifeq ($(VERSION_PATCH), 6)
85
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)g_SVN$(REV)
86
endif
87
ifeq ($(VERSION_PATCH), 7)
88
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)h_SVN$(REV)
89
endif
90
ifeq ($(VERSION_PATCH), 8)
91
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)i_SVN$(REV)
92
endif
93
ifeq ($(VERSION_PATCH), 9)
94
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)j_SVN$(REV)
95
endif
96
ifeq ($(VERSION_PATCH), 10)
97
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)k_SVN$(REV)
98
endif
99
ifeq ($(VERSION_PATCH), 11)
100
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)l_SVN$(REV)
101
endif
102
ifeq ($(VERSION_PATCH), 12)
103
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)m_SVN$(REV)
104
endif
105
ifeq ($(VERSION_PATCH), 13)
106
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)n_SVN$(REV)
107
endif
108
ifeq ($(VERSION_PATCH), 14)
109
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)o_SVN$(REV)
110
endif
111
ifeq ($(VERSION_PATCH), 15)
112
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)p_SVN$(REV)
113
endif
114
ifeq ($(VERSION_PATCH), 16)
115
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)q_SVN$(REV)
116
endif
117
ifeq ($(VERSION_PATCH), 17)
118
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)r_SVN$(REV)
119
endif
1775 - 120
ifeq ($(VERSION_PATCH), 100)
121
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(VERSION_MAJOR)_$(VERSION_MINOR)df_SVN$(REV)
122
endif
1612 dongfang 123
 
124
# Optimization level, can be [0, 1, 2, 3, s]. 0 turns off optimization.
125
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
126
OPT = 2
127
#OPT = s
128
 
129
##########################################################################################################
130
# List C source files here. (C dependencies are automatically generated.)
1775 - 131
SRC = main.c uart0.c printf_P.c timer0.c timer2.c analog.c menu.c output.c controlMixer.c
2039 - 132
SRC += externalControl.c dongfangMath.c twimaster.c rc.c attitude.c flight.c
133
SRC += eeprom.c heightControl.c configuration.c attitudeControl.c commands.c $(GYRO).c
1612 dongfang 134
 
2039 - 135
ifeq ($(EXT), DIRECT_GPS)
136
SRC += mk3mag.c directGPSNaviControl.c uart1.c ubx.c
1612 dongfang 137
endif
2039 - 138
 
1612 dongfang 139
ifeq ($(EXT), NAVICTRL)
140
SRC += spi.c
141
endif
142
##########################################################################################################
143
 
144
# List Assembler source files here.
145
# Make them always end in a capital .S.  Files ending in a lowercase .s
146
# will not be considered source files but generated files (assembler
147
# output from the compiler), and will be deleted upon "make clean"!
148
# Even though the DOS/Win* filesystem matches both .s and .S the same,
149
# it will preserve the spelling of the filenames, and gcc itself does
150
# care about how the name is spelled on its command-line.
2039 - 151
ASRC = isqrt.S
1612 dongfang 152
 
153
# List any extra directories to look for include files here.
154
#     Each directory must be seperated by a space.
155
EXTRAINCDIRS =
156
 
157
 
158
# Optional compiler flags.
159
#  -g:        generate debugging information (for GDB, or for COFF conversion)
160
#  -O*:       optimization level
161
#  -f...:     tuning, see gcc manual and avr-libc documentation
162
#  -Wall...:  warning level
163
#  -Wa,...:   tell GCC to pass this to the assembler.
164
#    -ahlms:  create assembler listing
165
CFLAGS = -O$(OPT) \
166
-funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums \
167
-Wall -Wstrict-prototypes \
168
-DGYRO=$(GYRO) \
169
-Wa,-adhlns=$(<:.c=.lst) \
170
$(patsubst %,-I%,$(EXTRAINCDIRS))
171
 
172
 
173
# Set a "language standard" compiler flag.
174
#   Unremark just one line below to set the language standard to use.
175
#   gnu99 = C99 + GNU extensions. See GCC manual for more information.
176
#CFLAGS += -std=c89
177
#CFLAGS += -std=gnu89
178
#CFLAGS += -std=c99
179
CFLAGS += -std=gnu99
180
 
1775 - 181
CFLAGS += -DF_CPU=$(F_CPU) -DVERSION_MAJOR=$(VERSION_MAJOR) -DVERSION_MINOR=$(VERSION_MINOR) -DVERSION_PATCH=$(VERSION_PATCH) -DVERSION_SERIAL_MAJOR=$(VERSION_SERIAL_MAJOR) -DVERSION_SERIAL_MINOR=$(VERSION_SERIAL_MINOR) -DNC_SPI_COMPATIBLE=$(NC_SPI_COMPATIBLE) -DGYRO_HW_NAME=${GYRO_HW_NAME} -DGYRO_HW_FACTOR=${GYRO_HW_FACTOR} -DGYRO_PITCHROLL_CORRECTION=${GYRO_PITCHROLL_CORRECTION} -DGYRO_YAW_CORRECTION=${GYRO_YAW_CORRECTION}
1612 dongfang 182
 
2039 - 183
ifeq ($(EXT), DIRECT_GPS)
184
 CFLAGS += -DUSE_DIRECT_GPS
1612 dongfang 185
endif
186
ifeq ($(EXT), NAVICTRL)
187
 CFLAGS += -DUSE_NAVICTRL
188
endif
189
 
190
ifeq ($(SETUP), QUADRO)
191
 CFLAGS += -DUSE_QUADRO
192
endif
193
ifeq ($(SETUP), OCTO)
194
 CFLAGS += -DUSE_OCTO
195
endif
196
ifeq ($(SETUP), OCTO2)
197
 CFLAGS += -DUSE_OCTO2
198
endif
199
ifeq ($(SETUP), OCTO3)
200
 CFLAGS += -DUSE_OCTO3
201
endif
202
 
203
 
204
# Optional assembler flags.
205
#  -Wa,...:   tell GCC to pass this to the assembler.
206
#  -ahlms:    create listing
207
#  -gstabs:   have the assembler create line number information; note that
208
#             for use in COFF files, additional information about filenames
209
#             and function names needs to be present in the assembler source
210
#             files -- see avr-libc docs [FIXME: not yet described there]
211
ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs
212
 
213
 
214
 
215
# Optional linker flags.
216
#  -Wl,...:   tell GCC to pass this to linker.
217
#  -Map:      create map file
218
#  --cref:    add cross reference to  map file
219
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
220
 
221
# Additional libraries
222
 
223
# Minimalistic printf version
224
#LDFLAGS += -Wl,-u,vfprintf -lprintf_min
225
 
226
# Floating point printf version (requires -lm below)
227
#LDFLAGS += -Wl,-u,vfprintf -lprintf_flt
228
 
229
# -lm = math library
230
LDFLAGS += -lm
231
 
232
 
233
##LDFLAGS += -T./linkerfile/avr5.x
234
 
235
 
236
# Programming support using avrdude. Settings and variables.
237
 
238
# Programming hardware: alf avr910 avrisp bascom bsd
239
# dt006 pavr picoweb pony-stk200 sp12 stk200 stk500
240
#
241
# Type: avrdude -c ?
242
# to get a full listing.
243
#
244
#AVRDUDE_PROGRAMMER = dt006
245
#AVRDUDE_PROGRAMMER = stk200
246
#AVRDUDE_PROGRAMMER = ponyser
2032 - 247
#AVRDUDE_PROGRAMMER = avrispv2
248
AVRDUDE_PROGRAMMER = usbtiny
1869 - 249
#falls Ponyser ausgewaehlt wird, muss sich unsere avrdude-Configdatei im Bin-Verzeichnis des Compilers befinden
1612 dongfang 250
 
251
#AVRDUDE_PORT = com1    # programmer connected to serial device
252
#AVRDUDE_PORT = lpt1    # programmer connected to parallel port
1955 - 253
AVRDUDE_PORT = usb
254
# programmer connected to USB
1612 dongfang 255
 
256
#AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
257
AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex $(FUSE_SETTINGS)
258
#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
259
 
2045 - 260
# Make a dummy read in order to cycle the reset pin on the MCU.
261
AVRDUDE_RESET = -u -U lfuse:r:m
262
 
1612 dongfang 263
#avrdude -c avrispv2 -P usb -p m32 -U flash:w:blink.hex
1956 - 264
AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -B 1
1612 dongfang 265
 
266
# Uncomment the following if you want avrdude's erase cycle counter.
267
# Note that this counter needs to be initialized first using -Yn,
268
# see avrdude manual.
269
#AVRDUDE_ERASE += -y
270
 
271
# Uncomment the following if you do /not/ wish a verification to be
272
# performed after programming the device.
273
AVRDUDE_FLAGS += -V
274
 
275
# Increase verbosity level.  Please use this when submitting bug
276
# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
277
# to submit bug reports.
278
#AVRDUDE_FLAGS += -v -v
279
 
280
# ---------------------------------------------------------------------------
281
# Define directories, if needed.
282
DIRAVR = c:/winavr
283
DIRAVRBIN = $(DIRAVR)/bin
284
DIRAVRUTILS = $(DIRAVR)/utils/bin
285
DIRINC = .
286
DIRLIB = $(DIRAVR)/avr/lib
287
 
288
 
289
# Define programs and commands.
290
SHELL = sh
291
 
292
CC = avr-gcc
293
 
294
OBJCOPY = avr-objcopy
295
OBJDUMP = avr-objdump
296
SIZE = avr-size
297
 
298
# Programming support using avrdude.
299
AVRDUDE = avrdude
300
 
301
REMOVE = rm -f
302
COPY = cp
303
 
304
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
305
ELFSIZE = $(SIZE) -A $(TARGET).elf
306
 
307
# Define Messages
308
# English
309
MSG_ERRORS_NONE = Errors: none
310
MSG_BEGIN = -------- begin --------
311
MSG_END = --------  end  --------
312
MSG_SIZE_BEFORE = Size before:
313
MSG_SIZE_AFTER = Size after:
314
MSG_COFF = Converting to AVR COFF:
315
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
316
MSG_FLASH = Creating load file for Flash:
317
MSG_EEPROM = Creating load file for EEPROM:
318
MSG_EXTENDED_LISTING = Creating Extended Listing:
319
MSG_SYMBOL_TABLE = Creating Symbol Table:
320
MSG_LINKING = Linking:
321
MSG_COMPILING = Compiling:
322
MSG_ASSEMBLING = Assembling:
323
MSG_CLEANING = Cleaning project:
324
 
325
 
326
# Define all object files.
327
OBJ = $(SRC:.c=.o) $(ASRC:.S=.o)
328
 
329
# Define all listing files.
330
LST = $(ASRC:.S=.lst) $(SRC:.c=.lst)
331
 
332
# Combine all necessary flags and optional flags.
333
# Add target processor to flags.
334
#ALL_CFLAGS = -mmcu=$(MCU) -DF_CPU=$(F_CPU) -I. $(CFLAGS)
335
ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS)
336
ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
337
 
338
 
339
# Default target.
340
all: begin gccversion sizebefore $(TARGET).elf $(TARGET).hex $(TARGET).eep \
341
	$(TARGET).lss $(TARGET).sym sizeafter finished end
342
 
343
 
344
# Eye candy.
345
# AVR Studio 3.x does not check make's exit code but relies on
346
# the following magic strings to be generated by the compile job.
347
begin:
348
	@echo
349
	@echo $(MSG_BEGIN)
350
 
351
finished:
352
	@echo $(MSG_ERRORS_NONE)
353
 
354
end:
355
	@echo $(MSG_END)
356
	@echo
357
 
358
 
359
# Display size of file.
360
sizebefore:
361
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi
362
 
363
sizeafter:
364
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi
365
 
366
 
367
 
368
# Display compiler version information.
369
gccversion :
370
	@$(CC) --version
371
 
372
 
373
# Convert ELF to COFF for use in debugging / simulating in
374
# AVR Studio or VMLAB.
375
COFFCONVERT=$(OBJCOPY) --debugging \
376
	--change-section-address .data-0x800000 \
377
	--change-section-address .bss-0x800000 \
378
	--change-section-address .noinit-0x800000 \
379
	--change-section-address .eeprom-0x810000
380
 
381
 
382
coff: $(TARGET).elf
383
	@echo
384
	@echo $(MSG_COFF) $(TARGET).cof
385
	$(COFFCONVERT) -O coff-avr $< $(TARGET).cof
386
 
387
 
388
extcoff: $(TARGET).elf
389
	@echo
390
	@echo $(MSG_EXTENDED_COFF) $(TARGET).cof
391
	$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
392
 
393
# Program the device.
394
program: $(TARGET).hex $(TARGET).eep
395
	$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
396
 
2045 - 397
reset:
398
	$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_RESET)
399
 
1612 dongfang 400
# Create final output files (.hex, .eep) from ELF output file.
401
%.hex: %.elf
402
	@echo
403
	@echo $(MSG_FLASH) $@
404
	$(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@
405
 
406
%.eep: %.elf
407
	@echo
408
	@echo $(MSG_EEPROM) $@
409
	-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
410
	--change-section-lma .eeprom=0 -O $(FORMAT) $< $@
411
 
412
# Create extended listing file from ELF output file.
413
%.lss: %.elf
414
	@echo
415
	@echo $(MSG_EXTENDED_LISTING) $@
416
	$(OBJDUMP) -h -S $< > $@
417
 
418
# Create a symbol table from ELF output file.
419
%.sym: %.elf
420
	@echo
421
	@echo $(MSG_SYMBOL_TABLE) $@
422
	avr-nm -n $< > $@
423
 
424
 
425
 
426
# Link: create ELF output file from object files.
427
.SECONDARY : $(TARGET).elf
428
.PRECIOUS : $(OBJ)
429
%.elf: $(OBJ)
430
	@echo
431
	@echo $(MSG_LINKING) $@
432
	$(CC) $(ALL_CFLAGS) $(OBJ) --output $@ $(LDFLAGS)
433
 
434
 
435
# Compile: create object files from C source files.
436
%.o : %.c
437
	@echo
438
	@echo $(MSG_COMPILING) $<
439
	$(CC) -c $(ALL_CFLAGS) $< -o $@
440
 
441
 
442
# Compile: create assembler files from C source files.
443
%.s : %.c
444
	$(CC) -S $(ALL_CFLAGS) $< -o $@
445
 
446
 
447
# Assemble: create object files from assembler source files.
448
%.o : %.S
449
	@echo
450
	@echo $(MSG_ASSEMBLING) $<
451
	$(CC) -c $(ALL_ASFLAGS) $< -o $@
452
 
453
 
454
 
455
 
456
 
457
 
458
# Target: clean project.
459
clean: begin clean_list finished end
460
 
461
clean_list :
462
	@echo
463
	@echo $(MSG_CLEANING)
464
#	$(REMOVE) $(TARGET).hex
465
	$(REMOVE) $(TARGET).eep
466
	$(REMOVE) $(TARGET).obj
467
	$(REMOVE) $(TARGET).cof
468
	$(REMOVE) $(TARGET).elf
469
	$(REMOVE) $(TARGET).map
470
	$(REMOVE) $(TARGET).obj
471
	$(REMOVE) $(TARGET).a90
472
	$(REMOVE) $(TARGET).sym
473
	$(REMOVE) $(TARGET).lnk
474
	$(REMOVE) $(TARGET).lss
475
	$(REMOVE) $(OBJ)
476
	$(REMOVE) $(LST)
477
	$(REMOVE) $(SRC:.c=.s)
478
	$(REMOVE) $(SRC:.c=.d)
479
 
480
# Automatically generate C source code dependencies.
481
# (Code originally taken from the GNU make user manual and modified
482
# (See README.txt Credits).)
483
#
484
# Note that this will work with sh (bash) and sed that is shipped with WinAVR
485
# (see the SHELL variable defined above).
486
# This may not work with other shells or other seds.
487
#
488
%.d: %.c
489
	set -e; $(CC) -MM $(ALL_CFLAGS) $< \
490
	| sed 's,\(.*\)\.o[ :]*,\1.o \1.d : ,g' > $@; \
491
	[ -s $@ ] || rm -f $@
492
 
493
 
494
# Remove the '-' if you want to see the dependency files generated.
495
-include $(SRC:.c=.d)
496
 
497
# Listing of phony targets.
498
.PHONY : all begin finish end sizebefore sizeafter gccversion coff extcoff \
499
	clean clean_list program