Add Bootloader
Site: http://easyelectronics.ru/avr-uchebnyj-kurs-ispolzovanie-bootloadera.html
This commit is contained in:
75
boot/default/Makefile
Normal file
75
boot/default/Makefile
Normal file
@ -0,0 +1,75 @@
|
||||
###############################################################################
|
||||
# Makefile for the project Bootloader
|
||||
###############################################################################
|
||||
|
||||
## General Flags
|
||||
PROJECT = Bootloader
|
||||
MCU = atmega16
|
||||
TARGET = Bootloader.elf
|
||||
CC = avr-gcc
|
||||
|
||||
## Options common to compile, link and assembly rules
|
||||
COMMON = -mmcu=$(MCU)
|
||||
|
||||
## Compile options common for all C compilation units.
|
||||
CFLAGS = $(COMMON)
|
||||
CFLAGS += -Wall -gdwarf-2 -Os -std=gnu99 -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
|
||||
CFLAGS += -MD -MP -MT $(*F).o -MF dep/$(@F).d
|
||||
|
||||
## Assembly specific flags
|
||||
ASMFLAGS = $(COMMON)
|
||||
ASMFLAGS += $(CFLAGS)
|
||||
ASMFLAGS += -x assembler-with-cpp -Wa,-gdwarf2
|
||||
|
||||
## Linker flags
|
||||
LDFLAGS = $(COMMON)
|
||||
LDFLAGS += -Wl,-Map=Bootloader.map
|
||||
|
||||
|
||||
## Intel Hex file production flags
|
||||
HEX_FLASH_FLAGS = -R .eeprom -R .fuse -R .lock -R .signature
|
||||
|
||||
HEX_EEPROM_FLAGS = -j .eeprom
|
||||
HEX_EEPROM_FLAGS += --set-section-flags=.eeprom="alloc,load"
|
||||
HEX_EEPROM_FLAGS += --change-section-lma .eeprom=0 --no-change-warnings
|
||||
|
||||
|
||||
## Objects that must be built in order to link
|
||||
OBJECTS = main.o
|
||||
|
||||
## Objects explicitly added by the user
|
||||
LINKONLYOBJECTS =
|
||||
|
||||
## Build
|
||||
all: $(TARGET) Bootloader.hex Bootloader.eep Bootloader.lss size
|
||||
|
||||
## Compile
|
||||
main.o: ../main.c
|
||||
$(CC) $(INCLUDES) $(CFLAGS) -c $<
|
||||
|
||||
##Link
|
||||
$(TARGET): $(OBJECTS)
|
||||
$(CC) $(LDFLAGS) $(OBJECTS) $(LINKONLYOBJECTS) $(LIBDIRS) $(LIBS) -o $(TARGET)
|
||||
|
||||
%.hex: $(TARGET)
|
||||
avr-objcopy -O ihex $(HEX_FLASH_FLAGS) $< $@
|
||||
|
||||
%.eep: $(TARGET)
|
||||
-avr-objcopy $(HEX_EEPROM_FLAGS) -O ihex $< $@ || exit 0
|
||||
|
||||
%.lss: $(TARGET)
|
||||
avr-objdump -h -S $< > $@
|
||||
|
||||
size: ${TARGET}
|
||||
@echo
|
||||
@avr-size -C --mcu=${MCU} ${TARGET}
|
||||
|
||||
## Clean target
|
||||
.PHONY: clean
|
||||
clean:
|
||||
-rm -rf $(OBJECTS) Bootloader.elf dep/* Bootloader.hex Bootloader.eep Bootloader.lss Bootloader.map
|
||||
|
||||
|
||||
## Other dependencies
|
||||
-include $(shell mkdir dep 2>/dev/null) $(wildcard dep/*)
|
||||
|
62
boot/default/dep/main.o.d
Normal file
62
boot/default/dep/main.o.d
Normal file
@ -0,0 +1,62 @@
|
||||
main.o: ../main.c c:/winavr/lib/gcc/../../avr/include/stdint.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/io.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/sfr_defs.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/inttypes.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/iom16.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/portpins.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/common.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/version.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/fuse.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/lock.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/wdt.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/boot.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/eeprom.h \
|
||||
c:\winavr\bin\../lib/gcc/avr/4.3.2/include/stddef.h \
|
||||
c:\winavr\bin\../lib/gcc/avr/4.3.2/include-fixed/limits.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/pgmspace.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/interrupt.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/util/delay.h \
|
||||
c:/winavr/lib/gcc/../../avr/include/util/delay_basic.h ../chipdef.h \
|
||||
../mega16.h
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/stdint.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/io.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/sfr_defs.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/inttypes.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/iom16.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/portpins.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/common.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/version.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/fuse.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/lock.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/wdt.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/boot.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/eeprom.h:
|
||||
|
||||
c:\winavr\bin\../lib/gcc/avr/4.3.2/include/stddef.h:
|
||||
|
||||
c:\winavr\bin\../lib/gcc/avr/4.3.2/include-fixed/limits.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/pgmspace.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/avr/interrupt.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/util/delay.h:
|
||||
|
||||
c:/winavr/lib/gcc/../../avr/include/util/delay_basic.h:
|
||||
|
||||
../chipdef.h:
|
||||
|
||||
../mega16.h:
|
Reference in New Issue
Block a user