Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1 ingob 1
#--------------------------------------------------------------------
2
# MCU name
3
MCU = atmega644
4
F_CPU = 20000000
5
#-------------------------------------------------------------------
6
HAUPT_VERSION    =   0
395 hbuss 7
NEBEN_VERSION    =  66
419 hbuss 8
VERSION_INDEX    =   2
297 holgerb 9
 
395 hbuss 10
VERSION_KOMPATIBEL = 6  # PC-Kompatibilität
1 ingob 11
#-------------------------------------------------------------------
12
 
13
ifeq ($(MCU), atmega32)
14
# FUSE_SETTINGS= -u -U lfuse:w:0xff:m -U hfuse:w:0xcf:m
15
 
16
 HEX_NAME = MEGA32
17
endif
18
 
19
ifeq ($(MCU), atmega644)
20
FUSE_SETTINGS = -u -U lfuse:w:0xff:m -U hfuse:w:0xdf:m
21
#FUSE_SETTINGS = -U lfuse:w:0xff:m -U hfuse:w:0xdf:m
22
 
23
# -u  bei neuen Controllern wieder einspielen
24
 
25
 HEX_NAME = MEGA644
26
endif
27
 
28
ifeq ($(F_CPU), 16000000)
29
 QUARZ = 16MHZ
30
endif
31
 
32
ifeq ($(F_CPU), 20000000)
33
 QUARZ = 20MHZ
34
endif
35
 
36
 
37
# Output format. (can be srec, ihex, binary)
38
FORMAT = ihex
39
 
40
# Target file name (without extension).
41
 
297 holgerb 42
ifeq ($(VERSION_INDEX), 0)
43
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(HAUPT_VERSION)_$(NEBEN_VERSION)a
44
endif
45
ifeq ($(VERSION_INDEX), 1)
46
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(HAUPT_VERSION)_$(NEBEN_VERSION)b
47
endif
48
ifeq ($(VERSION_INDEX), 2)
49
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(HAUPT_VERSION)_$(NEBEN_VERSION)c
50
endif
51
ifeq ($(VERSION_INDEX), 3)
52
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(HAUPT_VERSION)_$(NEBEN_VERSION)d
53
endif
54
ifeq ($(VERSION_INDEX), 4)
55
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(HAUPT_VERSION)_$(NEBEN_VERSION)e
56
endif
57
ifeq ($(VERSION_INDEX), 5)
58
TARGET = Flight-Ctrl_$(HEX_NAME)_V$(HAUPT_VERSION)_$(NEBEN_VERSION)f
59
endif
1 ingob 60
 
61
# Optimization level, can be [0, 1, 2, 3, s]. 0 turns off optimization.
62
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
63
OPT = s
64
 
65
##########################################################################################################
66
# List C source files here. (C dependencies are automatically generated.)
67
SRC = main.c uart.c  printf_P.c timer0.c  analog.c menu.c
395 hbuss 68
SRC += twimaster.c rc.c fc.c GPS.c
69
#spi.c
1 ingob 70
 
71
##########################################################################################################
72
 
73
 
74
# List Assembler source files here.
75
# Make them always end in a capital .S.  Files ending in a lowercase .s
76
# will not be considered source files but generated files (assembler
77
# output from the compiler), and will be deleted upon "make clean"!
78
# Even though the DOS/Win* filesystem matches both .s and .S the same,
79
# it will preserve the spelling of the filenames, and gcc itself does
80
# care about how the name is spelled on its command-line.
81
ASRC =
82
 
83
 
84
 
85
# List any extra directories to look for include files here.
86
#     Each directory must be seperated by a space.
87
EXTRAINCDIRS =
88
 
89
 
90
# Optional compiler flags.
91
#  -g:        generate debugging information (for GDB, or for COFF conversion)
92
#  -O*:       optimization level
93
#  -f...:     tuning, see gcc manual and avr-libc documentation
94
#  -Wall...:  warning level
95
#  -Wa,...:   tell GCC to pass this to the assembler.
96
#    -ahlms:  create assembler listing
97
CFLAGS = -O$(OPT) \
98
-funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums \
99
-Wall -Wstrict-prototypes \
100
-Wa,-adhlns=$(<:.c=.lst) \
101
$(patsubst %,-I%,$(EXTRAINCDIRS))
102
 
103
 
104
# Set a "language standard" compiler flag.
105
#   Unremark just one line below to set the language standard to use.
106
#   gnu99 = C99 + GNU extensions. See GCC manual for more information.
107
#CFLAGS += -std=c89
108
#CFLAGS += -std=gnu89
109
#CFLAGS += -std=c99
110
CFLAGS += -std=gnu99
111
 
297 holgerb 112
CFLAGS += -DVERSION_HAUPTVERSION=$(HAUPT_VERSION) -DVERSION_NEBENVERSION=$(NEBEN_VERSION) -DVERSION_KOMPATIBEL=$(VERSION_KOMPATIBEL) -DVERSION_INDEX=$(VERSION_INDEX)
1 ingob 113
 
114
 
115
# Optional assembler flags.
116
#  -Wa,...:   tell GCC to pass this to the assembler.
117
#  -ahlms:    create listing
118
#  -gstabs:   have the assembler create line number information; note that
119
#             for use in COFF files, additional information about filenames
120
#             and function names needs to be present in the assembler source
121
#             files -- see avr-libc docs [FIXME: not yet described there]
122
ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs
123
 
124
 
125
 
126
# Optional linker flags.
127
#  -Wl,...:   tell GCC to pass this to linker.
128
#  -Map:      create map file
129
#  --cref:    add cross reference to  map file
130
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
131
 
132
# Additional libraries
133
 
134
# Minimalistic printf version
135
#LDFLAGS += -Wl,-u,vfprintf -lprintf_min
136
 
137
# Floating point printf version (requires -lm below)
138
#LDFLAGS += -Wl,-u,vfprintf -lprintf_flt
139
 
140
# -lm = math library
141
LDFLAGS += -lm
142
 
143
 
144
##LDFLAGS += -T./linkerfile/avr5.x
145
 
146
 
147
 
148
# Programming support using avrdude. Settings and variables.
149
 
150
# Programming hardware: alf avr910 avrisp bascom bsd
151
# dt006 pavr picoweb pony-stk200 sp12 stk200 stk500
152
#
153
# Type: avrdude -c ?
154
# to get a full listing.
155
#
156
#AVRDUDE_PROGRAMMER = stk200
157
AVRDUDE_PROGRAMMER = dt006
158
#AVRDUDE_PROGRAMMER = ponyser
159
#falls Ponyser ausgewählt wird, muss sich unsere avrdude-Configdatei im Bin-Verzeichnis des Compilers befinden
160
 
161
 
162
#AVRDUDE_PORT = com1	   # programmer connected to serial device
163
AVRDUDE_PORT = lpt1	# programmer connected to parallel port
164
 
165
#AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
166
AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex $(FUSE_SETTINGS)
167
#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
168
 
169
AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
170
 
171
# Uncomment the following if you want avrdude's erase cycle counter.
172
# Note that this counter needs to be initialized first using -Yn,
173
# see avrdude manual.
174
#AVRDUDE_ERASE += -y
175
 
176
# Uncomment the following if you do /not/ wish a verification to be
177
# performed after programming the device.
178
AVRDUDE_FLAGS += -V
179
 
180
# Increase verbosity level.  Please use this when submitting bug
181
# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
182
# to submit bug reports.
183
#AVRDUDE_FLAGS += -v -v
184
 
185
# ---------------------------------------------------------------------------
186
# Define directories, if needed.
187
DIRAVR = c:/winavr
188
DIRAVRBIN = $(DIRAVR)/bin
189
DIRAVRUTILS = $(DIRAVR)/utils/bin
190
DIRINC = .
191
DIRLIB = $(DIRAVR)/avr/lib
192
 
193
 
194
# Define programs and commands.
195
SHELL = sh
196
 
197
CC = avr-gcc
198
 
199
OBJCOPY = avr-objcopy
200
OBJDUMP = avr-objdump
201
SIZE = avr-size
202
 
203
# Programming support using avrdude.
204
AVRDUDE = avrdude
205
 
206
REMOVE = rm -f
207
COPY = cp
208
 
209
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
210
ELFSIZE = $(SIZE) -A $(TARGET).elf
211
 
212
# Define Messages
213
# English
214
MSG_ERRORS_NONE = Errors: none
215
MSG_BEGIN = -------- begin --------
216
MSG_END = --------  end  --------
217
MSG_SIZE_BEFORE = Size before:
218
MSG_SIZE_AFTER = Size after:
219
MSG_COFF = Converting to AVR COFF:
220
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
221
MSG_FLASH = Creating load file for Flash:
222
MSG_EEPROM = Creating load file for EEPROM:
223
MSG_EXTENDED_LISTING = Creating Extended Listing:
224
MSG_SYMBOL_TABLE = Creating Symbol Table:
225
MSG_LINKING = Linking:
226
MSG_COMPILING = Compiling:
227
MSG_ASSEMBLING = Assembling:
228
MSG_CLEANING = Cleaning project:
229
 
230
 
231
# Define all object files.
232
OBJ = $(SRC:.c=.o) $(ASRC:.S=.o)
233
 
234
# Define all listing files.
235
LST = $(ASRC:.S=.lst) $(SRC:.c=.lst)
236
 
237
# Combine all necessary flags and optional flags.
238
# Add target processor to flags.
239
#ALL_CFLAGS = -mmcu=$(MCU) -DF_CPU=$(F_CPU) -I. $(CFLAGS)
240
ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS)
241
ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
242
 
243
 
244
# Default target.
245
all: begin gccversion sizebefore $(TARGET).elf $(TARGET).hex $(TARGET).eep \
246
	$(TARGET).lss $(TARGET).sym sizeafter finished end
247
 
248
 
249
# Eye candy.
250
# AVR Studio 3.x does not check make's exit code but relies on
251
# the following magic strings to be generated by the compile job.
252
begin:
253
	@echo
254
	@echo $(MSG_BEGIN)
255
 
256
finished:
257
	@echo $(MSG_ERRORS_NONE)
258
 
259
end:
260
	@echo $(MSG_END)
261
	@echo
262
 
263
 
264
# Display size of file.
265
sizebefore:
266
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi
267
 
268
sizeafter:
269
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi
270
 
271
 
272
 
273
# Display compiler version information.
274
gccversion :
275
	@$(CC) --version
276
 
277
 
278
# Convert ELF to COFF for use in debugging / simulating in
279
# AVR Studio or VMLAB.
280
COFFCONVERT=$(OBJCOPY) --debugging \
281
	--change-section-address .data-0x800000 \
282
	--change-section-address .bss-0x800000 \
283
	--change-section-address .noinit-0x800000 \
284
	--change-section-address .eeprom-0x810000
285
 
286
 
287
coff: $(TARGET).elf
288
	@echo
289
	@echo $(MSG_COFF) $(TARGET).cof
290
	$(COFFCONVERT) -O coff-avr $< $(TARGET).cof
291
 
292
 
293
extcoff: $(TARGET).elf
294
	@echo
295
	@echo $(MSG_EXTENDED_COFF) $(TARGET).cof
296
	$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
297
 
298
 
299
 
300
 
301
# Program the device.
302
program: $(TARGET).hex $(TARGET).eep
303
	$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
304
 
305
 
306
 
307
 
308
# Create final output files (.hex, .eep) from ELF output file.
309
%.hex: %.elf
310
	@echo
311
	@echo $(MSG_FLASH) $@
312
	$(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@
313
 
314
%.eep: %.elf
315
	@echo
316
	@echo $(MSG_EEPROM) $@
317
	-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
318
	--change-section-lma .eeprom=0 -O $(FORMAT) $< $@
319
 
320
# Create extended listing file from ELF output file.
321
%.lss: %.elf
322
	@echo
323
	@echo $(MSG_EXTENDED_LISTING) $@
324
	$(OBJDUMP) -h -S $< > $@
325
 
326
# Create a symbol table from ELF output file.
327
%.sym: %.elf
328
	@echo
329
	@echo $(MSG_SYMBOL_TABLE) $@
330
	avr-nm -n $< > $@
331
 
332
 
333
 
334
# Link: create ELF output file from object files.
335
.SECONDARY : $(TARGET).elf
336
.PRECIOUS : $(OBJ)
337
%.elf: $(OBJ)
338
	@echo
339
	@echo $(MSG_LINKING) $@
340
	$(CC) $(ALL_CFLAGS) $(OBJ) --output $@ $(LDFLAGS)
341
 
342
 
343
# Compile: create object files from C source files.
344
%.o : %.c
345
	@echo
346
	@echo $(MSG_COMPILING) $<
347
	$(CC) -c $(ALL_CFLAGS) $< -o $@
348
 
349
 
350
# Compile: create assembler files from C source files.
351
%.s : %.c
352
	$(CC) -S $(ALL_CFLAGS) $< -o $@
353
 
354
 
355
# Assemble: create object files from assembler source files.
356
%.o : %.S
357
	@echo
358
	@echo $(MSG_ASSEMBLING) $<
359
	$(CC) -c $(ALL_ASFLAGS) $< -o $@
360
 
361
 
362
 
363
 
364
 
365
 
366
# Target: clean project.
367
clean: begin clean_list finished end
368
 
369
clean_list :
370
	@echo
371
	@echo $(MSG_CLEANING)
372
#	$(REMOVE) $(TARGET).hex
373
	$(REMOVE) $(TARGET).eep
374
	$(REMOVE) $(TARGET).obj
375
	$(REMOVE) $(TARGET).cof
376
	$(REMOVE) $(TARGET).elf
377
	$(REMOVE) $(TARGET).map
378
	$(REMOVE) $(TARGET).obj
379
	$(REMOVE) $(TARGET).a90
380
	$(REMOVE) $(TARGET).sym
381
	$(REMOVE) $(TARGET).lnk
382
	$(REMOVE) $(TARGET).lss
383
	$(REMOVE) $(OBJ)
384
	$(REMOVE) $(LST)
385
	$(REMOVE) $(SRC:.c=.s)
386
	$(REMOVE) $(SRC:.c=.d)
387
 
388
 
389
# Automatically generate C source code dependencies.
390
# (Code originally taken from the GNU make user manual and modified
391
# (See README.txt Credits).)
392
#
393
# Note that this will work with sh (bash) and sed that is shipped with WinAVR
394
# (see the SHELL variable defined above).
395
# This may not work with other shells or other seds.
396
#
397
%.d: %.c
398
	set -e; $(CC) -MM $(ALL_CFLAGS) $< \
399
	| sed 's,\(.*\)\.o[ :]*,\1.o \1.d : ,g' > $@; \
400
	[ -s $@ ] || rm -f $@
401
 
402
 
403
# Remove the '-' if you want to see the dependency files generated.
404
-include $(SRC:.c=.d)
405
 
406
 
407
 
408
# Listing of phony targets.
409
.PHONY : all begin finish end sizebefore sizeafter gccversion coff extcoff \
410
	clean clean_list program
411