Compare commits
No commits in common. 'master' and '1.0.0' have entirely different histories.
@ -1,587 +1,127 @@
|
||||
# ----------------------------------------------------------------------------
|
||||
# Makefile to compile and link stk500boot bootloader
|
||||
# Author: Peter Fleury
|
||||
# based on WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al.
|
||||
#
|
||||
# Adjust F_CPU below to the clock frequency in Mhz of your AVR target
|
||||
# Adjust BOOTLOADER_ADDRESS to your AVR target
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
# On command line:
|
||||
#
|
||||
# make all = Make software.
|
||||
#
|
||||
# make clean = Clean out built project files.
|
||||
#
|
||||
# make coff = Convert ELF to AVR COFF.
|
||||
#
|
||||
# make extcoff = Convert ELF to AVR Extended COFF.
|
||||
#
|
||||
# make program = Download the hex file to the device, using avrdude.
|
||||
# Please customize the avrdude settings below first!
|
||||
#
|
||||
# make debug = Start either simulavr or avarice as specified for debugging,
|
||||
# with avr-gdb or avr-insight as the front end for debugging.
|
||||
#
|
||||
# make filename.s = Just compile filename.c into the assembler code only.
|
||||
#
|
||||
# make filename.i = Create a preprocessed source file for use in submitting
|
||||
# bug reports to the GCC project.
|
||||
#
|
||||
# To rebuild project do "make clean" then "make all".
|
||||
#----------------------------------------------------------------------------
|
||||
# <MLS> = Mark Sproul msproul-at-skychariot.com
|
||||
|
||||
|
||||
# MCU name
|
||||
#MCU = atmega128
|
||||
|
||||
|
||||
# Processor frequency.
|
||||
# This will define a symbol, F_CPU, in all source code files equal to the
|
||||
# processor frequency. You can then use this symbol in your source code to
|
||||
# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
|
||||
# automatically to create a 32-bit value in your source code.
|
||||
#F_CPU = 16000000
|
||||
|
||||
|
||||
# Bootloader
|
||||
# Please adjust if using a different AVR
|
||||
# 0x0e00*2=0x1C00 for ATmega8 512 words Boot Size
|
||||
# 0xFC00*2=0x1F800 for ATmega128 1024 words Boot Size
|
||||
# 0xF800*2=0x1F000 for ATmega1280
|
||||
# 0xF000*2=0x1E000 for ATmega1280
|
||||
#BOOTLOADER_ADDRESS = 1E000
|
||||
|
||||
|
||||
# Output format. (can be srec, ihex, binary)
|
||||
FORMAT = ihex
|
||||
|
||||
|
||||
# Target file name (without extension).
|
||||
TARGET = stk500boot
|
||||
|
||||
|
||||
# List C source files here. (C dependencies are automatically generated.)
|
||||
SRC = stk500boot.c
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
SHELL := cmd.exe
|
||||
RM := rm -rf
|
||||
|
||||
# List Assembler source files here.
|
||||
# Make them always end in a capital .S. Files ending in a lowercase .s
|
||||
# will not be considered source files but generated files (assembler
|
||||
# output from the compiler), and will be deleted upon "make clean"!
|
||||
# Even though the DOS/Win* filesystem matches both .s and .S the same,
|
||||
# it will preserve the spelling of the filenames, and gcc itself does
|
||||
# care about how the name is spelled on its command-line.
|
||||
ASRC =
|
||||
|
||||
USER_OBJS :=
|
||||
|
||||
# Optimization level, can be [0, 1, 2, 3, s].
|
||||
# 0 = turn off optimization. s = optimize for size.
|
||||
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
|
||||
OPT = s
|
||||
LIBS :=
|
||||
PROJ :=
|
||||
|
||||
O_SRCS :=
|
||||
C_SRCS :=
|
||||
S_SRCS :=
|
||||
S_UPPER_SRCS :=
|
||||
OBJ_SRCS :=
|
||||
ASM_SRCS :=
|
||||
PREPROCESSING_SRCS :=
|
||||
OBJS :=
|
||||
OBJS_AS_ARGS :=
|
||||
C_DEPS :=
|
||||
C_DEPS_AS_ARGS :=
|
||||
EXECUTABLES :=
|
||||
OUTPUT_FILE_PATH :=
|
||||
OUTPUT_FILE_PATH_AS_ARGS :=
|
||||
AVR_APP_PATH :=$$$AVR_APP_PATH$$$
|
||||
QUOTE := "
|
||||
ADDITIONAL_DEPENDENCIES:=
|
||||
OUTPUT_FILE_DEP:=
|
||||
LIB_DEP:=
|
||||
LINKER_SCRIPT_DEP:=
|
||||
|
||||
# Debugging format.
|
||||
# Native formats for AVR-GCC's -g are dwarf-2 [default] or stabs.
|
||||
# AVR Studio 4.10 requires dwarf-2.
|
||||
# AVR [Extended] COFF format requires stabs, plus an avr-objcopy run.
|
||||
DEBUG = dwarf-2
|
||||
# Every subdirectory with source files must be described here
|
||||
SUBDIRS :=
|
||||
|
||||
|
||||
# List any extra directories to look for include files here.
|
||||
# Each directory must be separated by a space.
|
||||
# Use forward slashes for directory separators.
|
||||
# For a directory that has spaces, enclose it in quotes.
|
||||
EXTRAINCDIRS =
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../stk500boot.c
|
||||
|
||||
|
||||
# Compiler flag to set the C Standard level.
|
||||
# c89 = "ANSI" C
|
||||
# gnu89 = c89 plus GCC extensions
|
||||
# c99 = ISO C99 standard (not yet fully implemented)
|
||||
# gnu99 = c99 plus GCC extensions
|
||||
CSTANDARD = -std=gnu99
|
||||
PREPROCESSING_SRCS +=
|
||||
|
||||
|
||||
# Place -D or -U options here
|
||||
CDEFS = -DF_CPU=$(F_CPU)UL
|
||||
ASM_SRCS +=
|
||||
|
||||
|
||||
# Place -I options here
|
||||
CINCS =
|
||||
OBJS += \
|
||||
stk500boot.o
|
||||
|
||||
OBJS_AS_ARGS += \
|
||||
stk500boot.o
|
||||
|
||||
C_DEPS += \
|
||||
stk500boot.d
|
||||
|
||||
#---------------- Compiler Options ----------------
|
||||
# -g*: generate debugging information
|
||||
# -O*: optimization level
|
||||
# -f...: tuning, see GCC manual and avr-libc documentation
|
||||
# -Wall...: warning level
|
||||
# -Wa,...: tell GCC to pass this to the assembler.
|
||||
# -adhlns...: create assembler listing
|
||||
CFLAGS = -g$(DEBUG)
|
||||
CFLAGS += $(CDEFS) $(CINCS)
|
||||
CFLAGS += -O$(OPT)
|
||||
CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -fno-jump-tables
|
||||
CFLAGS += -Wall -Wstrict-prototypes
|
||||
CFLAGS += -Wa,-adhlns=$(<:.c=.lst)
|
||||
CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
|
||||
CFLAGS += $(CSTANDARD)
|
||||
C_DEPS_AS_ARGS += \
|
||||
stk500boot.d
|
||||
|
||||
OUTPUT_FILE_PATH +=stk500boot_v2_mega2560.elf
|
||||
|
||||
#---------------- Assembler Options ----------------
|
||||
# -Wa,...: tell GCC to pass this to the assembler.
|
||||
# -ahlms: create listing
|
||||
# -gstabs: have the assembler create line number information; note that
|
||||
# for use in COFF files, additional information about filenames
|
||||
# and function names needs to be present in the assembler source
|
||||
# files -- see avr-libc docs [FIXME: not yet described there]
|
||||
ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs
|
||||
OUTPUT_FILE_PATH_AS_ARGS +=stk500boot_v2_mega2560.elf
|
||||
|
||||
ADDITIONAL_DEPENDENCIES:=
|
||||
|
||||
#---------------- Library Options ----------------
|
||||
# Minimalistic printf version
|
||||
PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
|
||||
OUTPUT_FILE_DEP:= ./makedep.mk
|
||||
|
||||
# Floating point printf version (requires MATH_LIB = -lm below)
|
||||
PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
|
||||
LIB_DEP+=
|
||||
|
||||
# If this is left blank, then it will use the Standard printf version.
|
||||
PRINTF_LIB =
|
||||
#PRINTF_LIB = $(PRINTF_LIB_MIN)
|
||||
#PRINTF_LIB = $(PRINTF_LIB_FLOAT)
|
||||
LINKER_SCRIPT_DEP+=
|
||||
|
||||
|
||||
# Minimalistic scanf version
|
||||
SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
|
||||
|
||||
# Floating point + %[ scanf version (requires MATH_LIB = -lm below)
|
||||
SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
|
||||
|
||||
# If this is left blank, then it will use the Standard scanf version.
|
||||
SCANF_LIB =
|
||||
#SCANF_LIB = $(SCANF_LIB_MIN)
|
||||
#SCANF_LIB = $(SCANF_LIB_FLOAT)
|
||||
|
||||
|
||||
MATH_LIB = -lm
|
||||
|
||||
|
||||
|
||||
#---------------- External Memory Options ----------------
|
||||
|
||||
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
|
||||
# used for variables (.data/.bss) and heap (malloc()).
|
||||
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff
|
||||
|
||||
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
|
||||
# only used for heap (malloc()).
|
||||
#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff
|
||||
|
||||
EXTMEMOPTS =
|
||||
|
||||
|
||||
|
||||
|
||||
#---------------- Linker Options ----------------
|
||||
# -Wl,...: tell GCC to pass this to linker.
|
||||
# -Map: create map file
|
||||
# --cref: add cross reference to map file
|
||||
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
|
||||
LDFLAGS += $(EXTMEMOPTS)
|
||||
LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
|
||||
|
||||
|
||||
#--------------- bootloader linker Options -------
|
||||
# BOOTLOADER_ADDRESS (=Start of Boot Loader section
|
||||
# in bytes - not words) is defined above.
|
||||
#LDFLAGS += -Wl,--section-start=.text=$(BOOTLOADER_ADDRESS) -nostartfiles -nodefaultlibs
|
||||
#LDFLAGS += -Wl,--section-start=.text=$(BOOTLOADER_ADDRESS) -nostartfiles
|
||||
LDFLAGS += -Wl,--section-start=.text=$(BOOTLOADER_ADDRESS)
|
||||
|
||||
#---------------- Programming Options (avrdude) ----------------
|
||||
|
||||
# Programming hardware: alf avr910 avrisp bascom bsd
|
||||
# dt006 pavr picoweb pony-stk200 sp12 stk200 stk500
|
||||
#
|
||||
# Type: avrdude -c ?
|
||||
# to get a full listing.
|
||||
#
|
||||
AVRDUDE_PROGRAMMER = stk500v2
|
||||
|
||||
# com1 = serial port. Use lpt1 to connect to parallel port.
|
||||
AVRDUDE_PORT = com1 # programmer connected to serial device
|
||||
|
||||
AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
|
||||
#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
|
||||
|
||||
|
||||
# Uncomment the following if you want avrdude's erase cycle counter.
|
||||
# Note that this counter needs to be initialized first using -Yn,
|
||||
# see avrdude manual.
|
||||
#AVRDUDE_ERASE_COUNTER = -y
|
||||
|
||||
# Uncomment the following if you do /not/ wish a verification to be
|
||||
# performed after programming the device.
|
||||
#AVRDUDE_NO_VERIFY = -V
|
||||
|
||||
# Increase verbosity level. Please use this when submitting bug
|
||||
# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
|
||||
# to submit bug reports.
|
||||
#AVRDUDE_VERBOSE = -v -v
|
||||
|
||||
AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
|
||||
AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
|
||||
AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
|
||||
AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)
|
||||
|
||||
|
||||
|
||||
#---------------- Debugging Options ----------------
|
||||
|
||||
# For simulavr only - target MCU frequency.
|
||||
DEBUG_MFREQ = $(F_CPU)
|
||||
|
||||
# Set the DEBUG_UI to either gdb or insight.
|
||||
# DEBUG_UI = gdb
|
||||
DEBUG_UI = insight
|
||||
|
||||
# Set the debugging back-end to either avarice, simulavr.
|
||||
DEBUG_BACKEND = avarice
|
||||
#DEBUG_BACKEND = simulavr
|
||||
|
||||
# GDB Init Filename.
|
||||
GDBINIT_FILE = __avr_gdbinit
|
||||
|
||||
# When using avarice settings for the JTAG
|
||||
JTAG_DEV = /dev/com1
|
||||
|
||||
# Debugging port used to communicate between GDB / avarice / simulavr.
|
||||
DEBUG_PORT = 4242
|
||||
|
||||
# Debugging host used to communicate between GDB / avarice / simulavr, normally
|
||||
# just set to localhost unless doing some sort of crazy debugging when
|
||||
# avarice is running on a different computer.
|
||||
DEBUG_HOST = localhost
|
||||
|
||||
|
||||
|
||||
#============================================================================
|
||||
|
||||
|
||||
# Define programs and commands.
|
||||
SHELL = sh
|
||||
CC = avr-gcc
|
||||
OBJCOPY = avr-objcopy
|
||||
OBJDUMP = avr-objdump
|
||||
SIZE = avr-size
|
||||
NM = avr-nm
|
||||
AVRDUDE = avrdude
|
||||
REMOVE = rm -f
|
||||
COPY = cp
|
||||
WINSHELL = cmd
|
||||
|
||||
|
||||
# Define Messages
|
||||
# English
|
||||
MSG_ERRORS_NONE = Errors: none
|
||||
MSG_BEGIN = -------- begin --------
|
||||
MSG_END = -------- end --------
|
||||
MSG_SIZE_BEFORE = Size before:
|
||||
MSG_SIZE_AFTER = Size after:
|
||||
MSG_COFF = Converting to AVR COFF:
|
||||
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
|
||||
MSG_FLASH = Creating load file for Flash:
|
||||
MSG_EEPROM = Creating load file for EEPROM:
|
||||
MSG_EXTENDED_LISTING = Creating Extended Listing:
|
||||
MSG_SYMBOL_TABLE = Creating Symbol Table:
|
||||
MSG_LINKING = Linking:
|
||||
MSG_COMPILING = Compiling:
|
||||
MSG_ASSEMBLING = Assembling:
|
||||
MSG_CLEANING = Cleaning project:
|
||||
|
||||
|
||||
|
||||
|
||||
# Define all object files.
|
||||
OBJ = $(SRC:.c=.o) $(ASRC:.S=.o)
|
||||
|
||||
# Define all listing files.
|
||||
LST = $(SRC:.c=.lst) $(ASRC:.S=.lst)
|
||||
|
||||
|
||||
# Compiler flags to generate dependency files.
|
||||
GENDEPFLAGS = -MD -MP -MF .dep/$(@F).d
|
||||
|
||||
# AVR32/GNU C Compiler
|
||||
./stk500boot.o: .././stk500boot.c
|
||||
@echo Building file: $<
|
||||
@echo Invoking: AVR/GNU C Compiler : 5.4.0
|
||||
$(QUOTE)C:\Program Files (x86)\Atmel\Studio\7.0\toolchain\avr8\avr8-gnu-toolchain\bin\avr-gcc.exe$(QUOTE) -x c -funsigned-char -funsigned-bitfields -DDEBUG -DF_CPU=16000000UL -I"C:\Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATmega_DFP\1.7.374\include" -Os -ffunction-sections -fdata-sections -fpack-struct -fshort-enums -mrelax -g2 -Wall -mmcu=atmega2560 -B "C:\Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATmega_DFP\1.7.374\gcc\dev\atmega2560" -c -std=gnu99 -MD -MP -MF "$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -MT"$(@:%.o=%.o)" -o "$@" "$<"
|
||||
@echo Finished building: $<
|
||||
|
||||
|
||||
# Combine all necessary flags and optional flags.
|
||||
# Add target processor to flags.
|
||||
ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) $(GENDEPFLAGS)
|
||||
ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
|
||||
|
||||
|
||||
|
||||
############################################################
|
||||
# May 25, 2010 <MLS> Adding 1280 support
|
||||
mega1280: MCU = atmega1280
|
||||
mega1280: F_CPU = 16000000
|
||||
mega1280: BOOTLOADER_ADDRESS = 1E000
|
||||
mega1280: CFLAGS += -D_MEGA_BOARD_
|
||||
mega1280: begin gccversion sizebefore build sizeafter end
|
||||
mv $(TARGET).hex stk500boot_v2_mega1280.hex
|
||||
# AVR32/GNU Preprocessing Assembler
|
||||
|
||||
|
||||
############################################################
|
||||
# Jul 6, 2010 <MLS> Adding 2560 support
|
||||
mega2560: MCU = atmega2560
|
||||
mega2560: F_CPU = 16000000
|
||||
mega2560: BOOTLOADER_ADDRESS = 3E000
|
||||
mega2560: CFLAGS += -D_MEGA_BOARD_
|
||||
mega2560: begin gccversion sizebefore build sizeafter end
|
||||
mv $(TARGET).hex stk500boot_v2_mega2560.hex
|
||||
|
||||
# AVR32/GNU Assembler
|
||||
|
||||
############################################################
|
||||
#Initial config on Amber128 board
|
||||
# avrdude: Device signature = 0x1e9702
|
||||
# avrdude: safemode: lfuse reads as 8F
|
||||
# avrdude: safemode: hfuse reads as CB
|
||||
# avrdude: safemode: efuse reads as FF
|
||||
# Jul 17, 2010 <MLS> Adding 128 support
|
||||
############################################################
|
||||
amber128: MCU = atmega128
|
||||
#amber128: F_CPU = 16000000
|
||||
amber128: F_CPU = 14745600
|
||||
amber128: BOOTLOADER_ADDRESS = 1E000
|
||||
amber128: CFLAGS += -D_BOARD_AMBER128_
|
||||
amber128: begin gccversion sizebefore build sizeafter end
|
||||
mv $(TARGET).hex stk500boot_v2_amber128.hex
|
||||
|
||||
############################################################
|
||||
# Aug 23, 2010 <MLS> Adding atmega2561 support
|
||||
m2561: MCU = atmega2561
|
||||
m2561: F_CPU = 8000000
|
||||
m2561: BOOTLOADER_ADDRESS = 3E000
|
||||
m2561: CFLAGS += -D_ANDROID_2561_ -DBAUDRATE=57600
|
||||
m2561: begin gccversion sizebefore build sizeafter end
|
||||
mv $(TARGET).hex stk500boot_v2_android2561.hex
|
||||
|
||||
|
||||
############################################################
|
||||
# avrdude: Device signature = 0x1e9801
|
||||
# avrdude: safemode: lfuse reads as EC
|
||||
# avrdude: safemode: hfuse reads as 18
|
||||
# avrdude: safemode: efuse reads as FD
|
||||
# Aug 23, 2010 <MLS> Adding cerebot 2560 @ 8mhz
|
||||
#avrdude -P usb -c usbtiny -p m2560 -v -U flash:w:/Arduino/WiringBootV2_upd1/stk500boot_v2_cerebotplus.hex
|
||||
############################################################
|
||||
cerebot: MCU = atmega2560
|
||||
cerebot: F_CPU = 8000000
|
||||
cerebot: BOOTLOADER_ADDRESS = 3E000
|
||||
cerebot: CFLAGS += -D_CEREBOTPLUS_BOARD_ -DBAUDRATE=38400 -DUART_BAUDRATE_DOUBLE_SPEED=1
|
||||
cerebot: begin gccversion sizebefore build sizeafter end
|
||||
mv $(TARGET).hex stk500boot_v2_cerebotplus.hex
|
||||
|
||||
|
||||
############################################################
|
||||
# Aug 23, 2010 <MLS> Adding atmega2561 support
|
||||
penguino: MCU = atmega32
|
||||
penguino: F_CPU = 16000000
|
||||
penguino: BOOTLOADER_ADDRESS = 7800
|
||||
penguino: CFLAGS += -D_PENGUINO_ -DBAUDRATE=57600
|
||||
penguino: begin gccversion sizebefore build sizeafter end
|
||||
mv $(TARGET).hex stk500boot_v2_penguino.hex
|
||||
|
||||
|
||||
# Default target.
|
||||
all: begin gccversion sizebefore build sizeafter end
|
||||
|
||||
build: elf hex eep lss sym
|
||||
#build: hex eep lss sym
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifneq ($(strip $(C_DEPS)),)
|
||||
-include $(C_DEPS)
|
||||
endif
|
||||
endif
|
||||
|
||||
elf: $(TARGET).elf
|
||||
hex: $(TARGET).hex
|
||||
eep: $(TARGET).eep
|
||||
lss: $(TARGET).lss
|
||||
sym: $(TARGET).sym
|
||||
|
||||
|
||||
|
||||
# Eye candy.
|
||||
# AVR Studio 3.x does not check make's exit code but relies on
|
||||
# the following magic strings to be generated by the compile job.
|
||||
begin:
|
||||
@echo
|
||||
@echo $(MSG_BEGIN)
|
||||
|
||||
end:
|
||||
@echo $(MSG_END)
|
||||
@echo
|
||||
|
||||
|
||||
# Display size of file.
|
||||
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
|
||||
ELFSIZE = $(SIZE) --format=avr --mcu=$(MCU) $(TARGET).elf
|
||||
|
||||
sizebefore:
|
||||
@if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \
|
||||
2>/dev/null; echo; fi
|
||||
|
||||
sizeafter:
|
||||
@if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); \
|
||||
2>/dev/null; echo; fi
|
||||
|
||||
|
||||
|
||||
# Display compiler version information.
|
||||
gccversion :
|
||||
@$(CC) --version
|
||||
|
||||
|
||||
|
||||
# Program the device.
|
||||
program: $(TARGET).hex $(TARGET).eep
|
||||
$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
|
||||
|
||||
|
||||
# Generate avr-gdb config/init file which does the following:
|
||||
# define the reset signal, load the target file, connect to target, and set
|
||||
# a breakpoint at main().
|
||||
gdb-config:
|
||||
@$(REMOVE) $(GDBINIT_FILE)
|
||||
@echo define reset >> $(GDBINIT_FILE)
|
||||
@echo SIGNAL SIGHUP >> $(GDBINIT_FILE)
|
||||
@echo end >> $(GDBINIT_FILE)
|
||||
@echo file $(TARGET).elf >> $(GDBINIT_FILE)
|
||||
@echo target remote $(DEBUG_HOST):$(DEBUG_PORT) >> $(GDBINIT_FILE)
|
||||
ifeq ($(DEBUG_BACKEND),simulavr)
|
||||
@echo load >> $(GDBINIT_FILE)
|
||||
endif
|
||||
@echo break main >> $(GDBINIT_FILE)
|
||||
|
||||
debug: gdb-config $(TARGET).elf
|
||||
ifeq ($(DEBUG_BACKEND), avarice)
|
||||
@echo Starting AVaRICE - Press enter when "waiting to connect" message displays.
|
||||
@$(WINSHELL) /c start avarice --jtag $(JTAG_DEV) --erase --program --file \
|
||||
$(TARGET).elf $(DEBUG_HOST):$(DEBUG_PORT)
|
||||
@$(WINSHELL) /c pause
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
|
||||
# All Target
|
||||
all: $(OUTPUT_FILE_PATH) $(ADDITIONAL_DEPENDENCIES)
|
||||
|
||||
$(OUTPUT_FILE_PATH): $(OBJS) $(USER_OBJS) $(OUTPUT_FILE_DEP) $(LIB_DEP) $(LINKER_SCRIPT_DEP)
|
||||
@echo Building target: $@
|
||||
@echo Invoking: AVR/GNU Linker : 5.4.0
|
||||
$(QUOTE)C:\Program Files (x86)\Atmel\Studio\7.0\toolchain\avr8\avr8-gnu-toolchain\bin\avr-gcc.exe$(QUOTE) -o$(OUTPUT_FILE_PATH_AS_ARGS) $(OBJS_AS_ARGS) $(USER_OBJS) $(LIBS) -Wl,-Map="stk500boot_v2_mega2560.map" -Wl,--start-group -Wl,-lm -Wl,--end-group -Wl,--gc-sections -mrelax -Wl,-section-start=.text=3e000 -mmcu=atmega2560 -B "C:\Program Files (x86)\Atmel\Studio\7.0\Packs\Atmel\ATmega_DFP\1.7.374\gcc\dev\atmega2560"
|
||||
@echo Finished building target: $@
|
||||
"C:\Program Files (x86)\Atmel\Studio\7.0\toolchain\avr8\avr8-gnu-toolchain\bin\avr-objcopy.exe" -O ihex -R .eeprom -R .fuse -R .lock -R .signature -R .user_signatures "stk500boot_v2_mega2560.elf" "stk500boot_v2_mega2560.hex"
|
||||
"C:\Program Files (x86)\Atmel\Studio\7.0\toolchain\avr8\avr8-gnu-toolchain\bin\avr-objcopy.exe" -j .eeprom --set-section-flags=.eeprom=alloc,load --change-section-lma .eeprom=0 --no-change-warnings -O ihex "stk500boot_v2_mega2560.elf" "stk500boot_v2_mega2560.eep" || exit 0
|
||||
"C:\Program Files (x86)\Atmel\Studio\7.0\toolchain\avr8\avr8-gnu-toolchain\bin\avr-objdump.exe" -h -S "stk500boot_v2_mega2560.elf" > "stk500boot_v2_mega2560.lss"
|
||||
"C:\Program Files (x86)\Atmel\Studio\7.0\toolchain\avr8\avr8-gnu-toolchain\bin\avr-objcopy.exe" -O srec -R .eeprom -R .fuse -R .lock -R .signature -R .user_signatures "stk500boot_v2_mega2560.elf" "stk500boot_v2_mega2560.srec"
|
||||
"C:\Program Files (x86)\Atmel\Studio\7.0\toolchain\avr8\avr8-gnu-toolchain\bin\avr-size.exe" "stk500boot_v2_mega2560.elf"
|
||||
|
||||
else
|
||||
@$(WINSHELL) /c start simulavr --gdbserver --device $(MCU) --clock-freq \
|
||||
$(DEBUG_MFREQ) --port $(DEBUG_PORT)
|
||||
endif
|
||||
@$(WINSHELL) /c start avr-$(DEBUG_UI) --command=$(GDBINIT_FILE)
|
||||
|
||||
|
||||
|
||||
|
||||
# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
|
||||
COFFCONVERT=$(OBJCOPY) --debugging \
|
||||
--change-section-address .data-0x800000 \
|
||||
--change-section-address .bss-0x800000 \
|
||||
--change-section-address .noinit-0x800000 \
|
||||
--change-section-address .eeprom-0x810000
|
||||
|
||||
|
||||
|
||||
coff: $(TARGET).elf
|
||||
@echo
|
||||
@echo $(MSG_COFF) $(TARGET).cof
|
||||
$(COFFCONVERT) -O coff-avr $< $(TARGET).cof
|
||||
|
||||
|
||||
extcoff: $(TARGET).elf
|
||||
@echo
|
||||
@echo $(MSG_EXTENDED_COFF) $(TARGET).cof
|
||||
$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
|
||||
|
||||
|
||||
# Create final output files (.hex, .eep) from ELF output file.
|
||||
%.hex: %.elf
|
||||
@echo
|
||||
@echo $(MSG_FLASH) $@
|
||||
$(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@
|
||||
|
||||
%.eep: %.elf
|
||||
@echo
|
||||
@echo $(MSG_EEPROM) $@
|
||||
-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
|
||||
--change-section-lma .eeprom=0 -O $(FORMAT) $< $@
|
||||
|
||||
# Create extended listing file from ELF output file.
|
||||
%.lss: %.elf
|
||||
@echo
|
||||
@echo $(MSG_EXTENDED_LISTING) $@
|
||||
$(OBJDUMP) -h -S $< > $@
|
||||
|
||||
# Create a symbol table from ELF output file.
|
||||
%.sym: %.elf
|
||||
@echo
|
||||
@echo $(MSG_SYMBOL_TABLE) $@
|
||||
$(NM) -n $< > $@
|
||||
|
||||
|
||||
|
||||
# Link: create ELF output file from object files.
|
||||
.SECONDARY : $(TARGET).elf
|
||||
.PRECIOUS : $(OBJ)
|
||||
%.elf: $(OBJ)
|
||||
@echo
|
||||
@echo $(MSG_LINKING) $@
|
||||
$(CC) $(ALL_CFLAGS) $^ --output $@ $(LDFLAGS)
|
||||
|
||||
|
||||
# Compile: create object files from C source files.
|
||||
%.o : %.c
|
||||
@echo
|
||||
@echo $(MSG_COMPILING) $<
|
||||
$(CC) -c $(ALL_CFLAGS) $< -o $@
|
||||
|
||||
|
||||
# Compile: create assembler files from C source files.
|
||||
%.s : %.c
|
||||
$(CC) -S $(ALL_CFLAGS) $< -o $@
|
||||
|
||||
|
||||
# Assemble: create object files from assembler source files.
|
||||
%.o : %.S
|
||||
@echo
|
||||
@echo $(MSG_ASSEMBLING) $<
|
||||
$(CC) -c $(ALL_ASFLAGS) $< -o $@
|
||||
|
||||
# Create preprocessed source for use in sending a bug report.
|
||||
%.i : %.c
|
||||
$(CC) -E -mmcu=$(MCU) -I. $(CFLAGS) $< -o $@
|
||||
|
||||
|
||||
# Target: clean project.
|
||||
clean: begin clean_list end
|
||||
|
||||
clean_list :
|
||||
@echo
|
||||
@echo $(MSG_CLEANING)
|
||||
$(REMOVE) *.hex
|
||||
$(REMOVE) *.eep
|
||||
$(REMOVE) *.cof
|
||||
$(REMOVE) *.elf
|
||||
$(REMOVE) *.map
|
||||
$(REMOVE) *.sym
|
||||
$(REMOVE) *.lss
|
||||
$(REMOVE) $(OBJ)
|
||||
$(REMOVE) $(LST)
|
||||
$(REMOVE) $(SRC:.c=.s)
|
||||
$(REMOVE) $(SRC:.c=.d)
|
||||
$(REMOVE) .dep/*
|
||||
|
||||
|
||||
|
||||
# Include the dependency files.
|
||||
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
|
||||
|
||||
|
||||
# Listing of phony targets.
|
||||
.PHONY : all begin finish end sizebefore sizeafter gccversion \
|
||||
build elf hex eep lss sym coff extcoff \
|
||||
clean clean_list program debug gdb-config
|
||||
|
||||
# Other Targets
|
||||
clean:
|
||||
-$(RM) $(OBJS_AS_ARGS) $(EXECUTABLES)
|
||||
-$(RM) $(C_DEPS_AS_ARGS)
|
||||
rm -rf "stk500boot_v2_mega2560.elf" "stk500boot_v2_mega2560.a" "stk500boot_v2_mega2560.hex" "stk500boot_v2_mega2560.lss" "stk500boot_v2_mega2560.eep" "stk500boot_v2_mega2560.map" "stk500boot_v2_mega2560.srec" "stk500boot_v2_mega2560.usersignatures"
|
||||
|
@ -1,513 +0,0 @@
|
||||
:020000023000CC
|
||||
:10E000000D94F6F20D941FF30D941FF30D941FF36E
|
||||
:10E010000D941FF30D941FF30D941FF30D941FF334
|
||||
:10E020000D941FF30D941FF30D941FF30D941FF324
|
||||
:10E030000D941FF30D941FF30D941FF30D941FF314
|
||||
:10E040000D941FF30D941FF30D941FF30D941FF304
|
||||
:10E050000D941FF30D941FF30D941FF30D941FF3F4
|
||||
:10E060000D941FF30D941FF30D941FF30D941FF3E4
|
||||
:10E070000D941FF30D941FF30D941FF30D941FF3D4
|
||||
:10E080000D941FF30D941FF30D941FF30D941FF3C4
|
||||
:10E090000D941FF30D941FF30D941FF30D941FF3B4
|
||||
:10E0A0000D941FF30D941FF30D941FF30D941FF3A4
|
||||
:10E0B0000D941FF30D941FF30D941FF30D941FF394
|
||||
:10E0C0000D941FF30D941FF30D941FF30D941FF384
|
||||
:10E0D0000D941FF30D941FF30D941FF30D941FF374
|
||||
:10E0E0000D941FF341546D65676132353630004140
|
||||
:10E0F000726475696E6F206578706C6F72657220DE
|
||||
:10E1000073746B3530305632206279204D4C530099
|
||||
:10E11000426F6F746C6F616465723E004875683F52
|
||||
:10E1200000436F6D70696C6564206F6E20203D2028
|
||||
:10E1300000435055205479706520202020203D2038
|
||||
:10E14000005F5F4156525F415243485F5F203D2070
|
||||
:10E1500000415652204C69624320566572203D2092
|
||||
:10E16000004743432056657273696F6E20203D203F
|
||||
:10E1700000435055207369676E61747572653D2068
|
||||
:10E18000004C6F77206675736520202020203D208D
|
||||
:10E1900000486967682066757365202020203D204F
|
||||
:10E1A00000457874206675736520202020203D206E
|
||||
:10E1B000004C6F636B2066757365202020203D2026
|
||||
:10E1C00000536570202039203230313000312E3636
|
||||
:10E1D0002E3700342E332E33005623202020414486
|
||||
:10E1E00044522020206F7020636F6465202020201F
|
||||
:10E1F00020696E737472756374696F6E20616464F4
|
||||
:10E2000072202020496E74657272757074006E6F92
|
||||
:10E2100020766563746F7200726A6D702020006AE8
|
||||
:10E220006D7020005768617420706F72743A0050EE
|
||||
:10E230006F7274206E6F7420737570706F72746576
|
||||
:10E2400064004D7573742062652061206C65747480
|
||||
:10E2500065720020005772697474696E67204545C5
|
||||
:10E260000052656164696E6720454500656570729E
|
||||
:10E270006F6D206572726F7220636F756E743D00F2
|
||||
:10E28000504F525400303D5A65726F206164647281
|
||||
:10E290006573732063747273003F3D435055207360
|
||||
:10E2A0007461747300403D454550524F4D20746574
|
||||
:10E2B000737400423D426C696E6B204C45440045CE
|
||||
:10E2C0003D44756D7020454550524F4D00463D44CC
|
||||
:10E2D000756D7020464C41534800483D48656C7050
|
||||
:10E2E000004C3D4C69737420492F4F20506F72745D
|
||||
:10E2F0007300513D517569742026206A756D702038
|
||||
:10E30000746F20757365722070676D00523D44759F
|
||||
:10E310006D702052414D00563D73686F7720696ED5
|
||||
:10E320007465727275707420566563746F727300D1
|
||||
:10E33000593D506F727420626C696E6B002A0052F6
|
||||
:10E340004553455400494E543000494E543100491C
|
||||
:10E350004E543200494E543300494E543400494E15
|
||||
:10E36000543500494E543600494E54370050434905
|
||||
:10E370004E5430005043494E5431005043494E549E
|
||||
:10E3800032005744540054494D45523020434F4DBC
|
||||
:10E3900050410054494D45523020434F4D504200AA
|
||||
:10E3A00054494D455230204F56460054494D455230
|
||||
:10E3B0003120434150540054494D45523120434F80
|
||||
:10E3C0004D50410054494D45523120434F4D50422C
|
||||
:10E3D0000054494D45523120434F4D50430054495C
|
||||
:10E3E0004D455231204F56460054494D455232203A
|
||||
:10E3F000434F4D50410054494D45523220434F4DFB
|
||||
:10E4000050420054494D455232204F56460054491F
|
||||
:10E410004D45523320434150540054494D455233E9
|
||||
:10E4200020434F4D50410054494D45523320434FF6
|
||||
:10E430004D50420054494D45523320434F4D5043B7
|
||||
:10E440000054494D455233204F56460054494D45DE
|
||||
:10E45000523420434150540054494D4552342043D6
|
||||
:10E460004F4D50410054494D45523420434F4D507B
|
||||
:10E47000420054494D45523420434F4D50430054BF
|
||||
:10E48000494D455234204F56460054494D4552356A
|
||||
:10E4900020434150540054494D45523520434F4D7F
|
||||
:10E4A00050410054494D45523520434F4D50420094
|
||||
:10E4B00054494D45523520434F4D50430054494D2A
|
||||
:10E4C000455235204F564600555341525430205244
|
||||
:10E4D000580055534152543020554452450055532D
|
||||
:10E4E0004152543020545800555341525431205217
|
||||
:10E4F000580055534152543120554452450055530C
|
||||
:10E5000041525431205458005553415254322052F4
|
||||
:10E5100058005553415254322055445245005553EA
|
||||
:10E5200041525432205458005553415254332052D2
|
||||
:10E5300058005553415254332055445245005553C9
|
||||
:10E5400041525433205458005350492053544300EF
|
||||
:10E5500041444300414E414C4F4720434F4D5000F2
|
||||
:10E560004545205245414459005457490053504DA8
|
||||
:10E57000205245414459002A003FE345E34AE34F16
|
||||
:10E58000E354E359E35EE363E368E36DE374E37B41
|
||||
:10E59000E382E3E9E3F6E303E4ABE3B7E3C4E3D107
|
||||
:10E5A000E3DEE386E393E3A0E348E5C8E4D2E4DEF8
|
||||
:10E5B000E454E550E560E50EE41AE427E434E44170
|
||||
:10E5C000E4E8E4F2E4FEE469E56DE54CE458E46572
|
||||
:10E5D000E472E47FE48AE496E4A3E4B0E4BDE408F2
|
||||
:10E5E000E512E51EE528E532E53EE50011241FBEF3
|
||||
:10E5F000CFEFD1E2DEBFCDBF01E00CBF12E0A0E063
|
||||
:10E60000B2E0EAEDFFEF03E00BBF02C007900D920E
|
||||
:10E61000A030B107D9F712E0A0E0B2E001C01D922E
|
||||
:10E62000AC30B107E1F70F94FBF40D94EBFF01E27E
|
||||
:10E630000EBF0FEF0DBF11241FBE0D94FBF40D9400
|
||||
:10E6400000F020E030E040ED57E005C0FA013197DE
|
||||
:10E65000F1F72F5F3F4F28173907C0F308959C014A
|
||||
:10E66000442737FD4095542FDA01C901860F911DCB
|
||||
:10E67000A11DB11DABBFFC018791882369F0809378
|
||||
:10E68000C6008091C00086FFFCCF8091C0008064EE
|
||||
:10E690008093C0006F5FE8CF08958DE08093C6003F
|
||||
:10E6A0008091C00086FFFCCF8091C0008064809381
|
||||
:10E6B000C0008AE08093C6008091C00086FFFCCF36
|
||||
:10E6C0008091C00080648093C00008950F942FF360
|
||||
:10E6D0000F944DF30895FC019081992359F0909384
|
||||
:10E6E000C6008091C00086FFFCCF8091C00080648E
|
||||
:10E6F0008093C0003196992379F70895282F982F99
|
||||
:10E7000092959F70892F805D8A3308F0895F80938E
|
||||
:10E71000C6008091C00086FFFCCF8091C00080645D
|
||||
:10E720008093C000822F8F70982F905D9A3308F0ED
|
||||
:10E73000995F9093C6008091C00086FFFCCF8091C6
|
||||
:10E74000C00080648093C00008959C01FB01853661
|
||||
:10E7500091051CF46330710594F0C90164E670E022
|
||||
:10E760000F948CFF605D7F4F6093C6008091C00066
|
||||
:10E7700086FFFCCF8091C00080648093C0002B3066
|
||||
:10E78000310514F43297B4F0C90164E670E00F94D7
|
||||
:10E790008CFF6AE070E00F948CFF605D7F4F6093A8
|
||||
:10E7A000C6008091C00086FFFCCF8091C0008064CD
|
||||
:10E7B0008093C000C9016AE070E00F948CFFC0969E
|
||||
:10E7C0008093C6008091C00086FFFCCF8091C0007E
|
||||
:10E7D00080648093C0000895282F277020642093C0
|
||||
:10E7E0007C0020917B0086958695869590E08170CF
|
||||
:10E7F000907033E0880F991F3A95E1F7277F282B17
|
||||
:10E8000020937B0080917A00806480937A008091CD
|
||||
:10E810007A0086FDFCCF2091780040917900942FFA
|
||||
:10E8200080E030E0282B392BC90108951F93182F61
|
||||
:10E8300080E892EE60E00F942FF31093C600809171
|
||||
:10E84000C00086FFFCCF8091C00080648093C00030
|
||||
:10E850000F944DF31F9108952F923F924F925F9224
|
||||
:10E860006F927F928F929F92AF92BF92CF92DF92E0
|
||||
:10E87000EF92FF920F931F93DF93CF93CDB7DEB745
|
||||
:10E8800062970FB6F894DEBF0FBECDBF382E622E52
|
||||
:10E89000CA01DB015C016D01772460E2262E2E01A6
|
||||
:10E8A0000894411C511C8BC081E0A81680E0B8067A
|
||||
:10E8B00081E0C80680E0D80628F0C601AA27BB2759
|
||||
:10E8C0000F947EF3BB27AD2D9C2D8B2D0F947EF3E3
|
||||
:10E8D0008A2D0F947EF32092C6008091C00086FF9F
|
||||
:10E8E000FCCF8091C00080648093C0009DE2909333
|
||||
:10E8F000C6008091C00086FFFCCF8091C00080647C
|
||||
:10E900008093C0002092C6008091C00086FFFCCF9B
|
||||
:10E910008091C00080648093C000198286017501D7
|
||||
:10E9200088249924A1E03A1651F03A1620F0B2E07A
|
||||
:10E930003B1661F409C00BBFF701779007C0C70110
|
||||
:10E940000F94D5FF782E02C0F7017080872D0F94A9
|
||||
:10E950007EF32092C6008091C00086FFFCCF80919C
|
||||
:10E96000C00080648093C000872D8052F401EF7056
|
||||
:10E97000F0708F3520F4E40DF51D708204C0E40DB5
|
||||
:10E98000F51D8EE280830894E11CF11C011D111D10
|
||||
:10E990000894811C911C90E18916910409F0C2CF62
|
||||
:10E9A00080E190E0A0E0B0E0A80EB91ECA1EDB1E18
|
||||
:10E9B000198AC2010F946BF30F944DF36A94662089
|
||||
:10E9C00009F072CF62960FB6F894DEBF0FBECDBFCE
|
||||
:10E9D000CF91DF911F910F91FF90EF90DF90CF903B
|
||||
:10E9E000BF90AF909F908F907F906F905F904F906F
|
||||
:10E9F0003F902F9008952F923F924F925F926F9287
|
||||
:10EA00007F928F929F92AF92BF92CF92DF92EF92BE
|
||||
:10EA1000FF920F931F93DF93CF93CDB7DEB7CD5304
|
||||
:10EA2000D1400FB6F894DEBF0FBECDBF279A2F9A04
|
||||
:10EA30008091C00082608093C00080E18093C40018
|
||||
:10EA400088E18093C1000000EE24FF248701B4E038
|
||||
:10EA5000AB2EB12CCC24DD2424C0C5010197F1F7E5
|
||||
:10EA60000894E11CF11C011D111D21E2E2162EE4A7
|
||||
:10EA7000F20620E0020720E0120718F0A1E0CA2EFB
|
||||
:10EA8000D12CC801B70128E53BE140E050E00F94EC
|
||||
:10EA90009FFF611571058105910519F485B18058B5
|
||||
:10EAA00085B98091C00087FD03C0C114D104A9F2CB
|
||||
:10EAB000A6014F5F5F4FC25EDE4F59834883CE5140
|
||||
:10EAC000D140C25EDE4F68817981CE51D140613044
|
||||
:10EAD000710511F00D946EFFC05DDE4F1982188232
|
||||
:10EAE000C053D14060E0C15DDE4F1882CF52D140AB
|
||||
:10EAF000AA24BB24C05EDE4F188219821A821B82B0
|
||||
:10EB0000C052D140CE5CDE4F188219821A821B821D
|
||||
:10EB1000C253D14080E090E0A0E0B0E0ABBFFC0188
|
||||
:10EB2000A791B691C45CDE4FB983A883CC53D14082
|
||||
:10EB30000D9469FFC25EDE4FE881F981CE51D1406C
|
||||
:10EB4000319709F52091C600C25EDE4F1982188206
|
||||
:10EB5000CE51D14022C02F5F3F4F4F4F5F4F2130EA
|
||||
:10EB6000F2E13F07FAE74F07F0E05F0780F0C45C8F
|
||||
:10EB7000DE4F08811981CC53D1400F5F1F4F19F030
|
||||
:10EB8000EE27FF27099420E030E040E050E080913C
|
||||
:10EB9000C00087FFE0CF2091C600213209F094C663
|
||||
:10EBA0000894A11CB11C33E0A316B10409F08EC671
|
||||
:10EBB00000E010E018C041E24093C6008091C00020
|
||||
:10EBC00086FFFCCF8091C00080648093C0002F5FDF
|
||||
:10EBD0003F4F2931310579F70F944DF30F5F1F4FE8
|
||||
:10EBE0000530110519F020E030E0E5CF1092080261
|
||||
:10EBF0001092090210920A0210920B021092040263
|
||||
:10EC00001092050210920602109207021092000262
|
||||
:10EC10001092010210920202109203028FEE90EE07
|
||||
:10EC200060E00F9466F380E191EE60E00F942FF3C3
|
||||
:10EC30008091C00087FFFCCF9091C600903608F00D
|
||||
:10EC40009F759032B8F09093C6008091C00086FF07
|
||||
:10EC5000FCCF8091C00080648093C00080E28093EC
|
||||
:10EC6000C6008091C00086FFFCCF8091C000806408
|
||||
:10EC70008093C000983409F4DBC19934B8F492341D
|
||||
:10EC800009F45DC1933458F4903319F1903308F4CA
|
||||
:10EC900018C69F33A1F1903409F013C6BDC0953456
|
||||
:10ECA00009F474C1963409F00CC69CC1923509F47C
|
||||
:10ECB0002FC2933538F49C3409F4F9C1913509F029
|
||||
:10ECC00000C61CC2963509F449C2993509F0F9C548
|
||||
:10ECD0009CC485E892EE62E00F9466F31092040201
|
||||
:10ECE000109205021092060210920702109208027A
|
||||
:10ECF0001092090210920A0210920B0217C189E9C0
|
||||
:10ED000092EE62E00F9466F38FEE90EE60E00F9467
|
||||
:10ED100066F381E291EE60E00F942FF381EC91EEC7
|
||||
:10ED200060E00F9466F381E391EE60E00F942FF3BF
|
||||
:10ED300084EE90EE60E00F9466F381E491EE60E083
|
||||
:10ED40000F942FF386E090E061E070E00F94A5F35C
|
||||
:10ED50000F944DF381E691EE60E00F942FF383ED75
|
||||
:10ED600091EE60E00F9466F381E591EE60E00F9420
|
||||
:10ED70002FF38DEC91EE60E00F9466F381E791EE56
|
||||
:10ED800060E00F942FF38EE10F947EF388E90F94E7
|
||||
:10ED90007EF381E00F947EF30F944DF381E891EEC2
|
||||
:10EDA00060E00F942FF319E0E0E0F0E010935700DB
|
||||
:10EDB000E4918E2F0F947EF30F944DF381E991EE41
|
||||
:10EDC00060E00F942FF3E3E0F0E010935700E4913C
|
||||
:10EDD0008E2F0F947EF30F944DF381EA91EE60E055
|
||||
:10EDE0000F942FF3E2E0F0E010935700E4918E2FA0
|
||||
:10EDF0000F947EF30F944DF381EB91EE60E00F944E
|
||||
:10EE00002FF3E1E0F0E0109357001491812F0F945D
|
||||
:10EE10007EF30F944DF307CF85EA92EE62E00F94F4
|
||||
:10EE200066F385E592EE60E00F9466F30F944DF380
|
||||
:10EE300000E010E019C0C8016F2D0F94DDFFFF2026
|
||||
:10EE400031F483E592EE60E00F942FF30BC0F09263
|
||||
:10EE5000C6008091C00086FFFCCF8091C000806416
|
||||
:10EE60008093C0000F5F1F4FC80181519F41AA27A7
|
||||
:10EE700097FDA095BA2FABBFFC01F7905AE2F516AB
|
||||
:10EE800021F062E000301607B1F60F944DF30F94B5
|
||||
:10EE90004DF381E692EE60E00F9466F30F944DF32C
|
||||
:10EEA000CC24DD2400E010E01EC0C8010F94D5FF83
|
||||
:10EEB000F82E882331F483E592EE60E00F942FF36F
|
||||
:10EEC0000BC08093C6008091C00086FFFCCF80916C
|
||||
:10EED000C00080648093C000FE1419F00894C11C27
|
||||
:10EEE000D11C0F5F1F4FC80181519F41AA2797FD79
|
||||
:10EEF000A095BA2FABBFFC01E7907AE2E71621F0AC
|
||||
:10EF000082E00030180789F60F944DF30F944DF30B
|
||||
:10EF10008CE692EE60E00F942FF3C60161E070E0A2
|
||||
:10EF20000F94A5F30F944DF30F944DF3109200023C
|
||||
:10EF300010920102109202021092030274CE83EB2F
|
||||
:10EF400092EE62E00F9466F3279A2F9A16C02F98DC
|
||||
:10EF500080E090E0E0EDF7E03197F1F7019684363C
|
||||
:10EF60009105C1F72F9A80E090E0E0EDF7E031974E
|
||||
:10EF7000F1F7019684369105C1F78091C00087FFB3
|
||||
:10EF8000E6CF8091C00087FFFCCF95C48FEB92EE57
|
||||
:10EF900062E00F9466F3409100025091010260918B
|
||||
:10EFA00002027091030281E020E10F942CF4809121
|
||||
:10EFB000000290910102A0910202B09103028050E0
|
||||
:10EFC0009F4FAF4FBF4F8093000290930102A093D9
|
||||
:10EFD0000202B093030280509041A040B04008F478
|
||||
:10EFE00022CEA4CF8DEC92EE62E00F9466F34091B6
|
||||
:10EFF000040250910502609106027091070280E0C0
|
||||
:10F0000020E10F942CF48091040290910502A091CC
|
||||
:10F010000602B091070280509F4FAF4FBF4F8093C1
|
||||
:10F02000040290930502A0930602B0930702FBCD61
|
||||
:10F030008AED92EE62E00F9466F385E892EE60E06E
|
||||
:10F040000F9466F389E992EE60E00F9466F385EA27
|
||||
:10F0500092EE60E00F9466F383EB92EE60E00F9423
|
||||
:10F0600066F38FEB92EE60E00F9466F38DEC92EE18
|
||||
:10F0700060E00F9466F38AED92EE60E00F9466F321
|
||||
:10F0800081EE92EE60E00F9466F382EF92EE60E024
|
||||
:10F090000F9466F38CE093EE60E00F9466F387E1E3
|
||||
:10F0A00093EE60E00F9466F380E393EEB9CD81EECA
|
||||
:10F0B00092EE62E00F9466F381E40F9416F482E41A
|
||||
:10F0C0000F9416F483E40F9416F484E40F9416F46A
|
||||
:10F0D00085E40F9416F486E40F9416F487E40F94F5
|
||||
:10F0E00016F488E40F9416F48AE40F9416F48BE473
|
||||
:10F0F0000F9416F48CE40F9416F495CD82EF92EEF3
|
||||
:10F1000062E00F9466F399249394AA24BB2445C427
|
||||
:10F110008CE093EE62E00F9466F340910802509108
|
||||
:10F12000090260910A0270910B0282E020E10F94C3
|
||||
:10F130002CF48091080290910902A0910A02B091EA
|
||||
:10F140000B0280509F4FAF4FBF4F809308029093A8
|
||||
:10F150000902A0930A02B0930B0265CD87E193EEFA
|
||||
:10F1600062E00F9466F384EE90EE60E00F9466F335
|
||||
:10F1700089ED91EE60E00F9466F309E715EECC5D42
|
||||
:10F18000DE4F19830883C452D1406624772443019B
|
||||
:10F19000CA5DDE4F19821882C652D140A401930184
|
||||
:10F1A0005695479537952795C85DDE4F2883398357
|
||||
:10F1B0004A835B83C852D140CA5DDE4F4881598182
|
||||
:10F1C000C652D1404F5F5F4FCA5DDE4F59834883BF
|
||||
:10F1D000C652D140CA0162E070E00F94A5F350E23C
|
||||
:10F1E0005093C6008091C00086FFFCCF8091C00084
|
||||
:10F1F00080648093C0006DE26093C6008091C0007F
|
||||
:10F2000086FFFCCF8091C00080648093C00070E2D4
|
||||
:10F210007093C6008091C00086FFFCCF8091C00033
|
||||
:10F2200080648093C000C85DDE4FE880F9800A8169
|
||||
:10F230001B81C852D140BB27A12F902F8F2D0F9437
|
||||
:10F240007EF3C85DDE4F8881C852D1400F947EF3B3
|
||||
:10F2500070E2F72EF092C6008091C00086FFFCCFCE
|
||||
:10F260008091C00080648093C0000DE30093C600CD
|
||||
:10F270008091C00086FFFCCF8091C00080648093A5
|
||||
:10F28000C00010E21093C6008091C00086FFFCCF42
|
||||
:10F290008091C00080648093C0008BBEF3012791F1
|
||||
:10F2A000C45DDE4F2883CC52D140A22EBB24CC2497
|
||||
:10F2B000DD240894611C711C811C911C8BBEF30120
|
||||
:10F2C0008791282E332444245524142D032DF22C09
|
||||
:10F2D000EE24EA0CFB1C0C1D1D1D0894611C711C06
|
||||
:10F2E000811C911C8BBEF3013791C35DDE4F3883C7
|
||||
:10F2F000CD52D1400894611C711C811C911C8BBEA5
|
||||
:10F30000F3014791C25DDE4F4883CE52D1402DEFCD
|
||||
:10F310003FEF4FEF5FEF620E731E841E951E0F943A
|
||||
:10F320007EF330E23093C6008091C00086FFFCCFB0
|
||||
:10F330008091C00080648093C000C45DDE4F8881EE
|
||||
:10F34000CC52D1400F947EF340E24093C6008091AE
|
||||
:10F35000C00086FFFCCF8091C00080648093C00015
|
||||
:10F36000C25DDE4F8881CE52D1400F947EF350E2D1
|
||||
:10F370005093C6008091C00086FFFCCF8091C000F2
|
||||
:10F3800080648093C000C35DDE4F8881CD52D14040
|
||||
:10F390000F947EF360E26093C6008091C00086FF08
|
||||
:10F3A000FCCF8091C00080648093C0007FEFE7169F
|
||||
:10F3B0007FEFF70670E0070770E0170731F48EE083
|
||||
:10F3C00092EE60E00F942FF3DFC0D801C701807088
|
||||
:10F3D000907CA070B0708050904CA040B040D1F5AF
|
||||
:10F3E0002FEF3FE340E050E0E222F3220423152315
|
||||
:10F3F000C85DDE4FA880B980CA80DB80C852D1408A
|
||||
:10F40000AE0CBF1CC01ED11EAA0CBB1CCC1CDD1C2C
|
||||
:10F4100088E192EE60E00F942FF3BB27A12F902F8D
|
||||
:10F420008F2D0F947EF38E2D0F947EF330E2309368
|
||||
:10F43000C6008091C00086FFFCCF8091C000806430
|
||||
:10F440008093C0004EE34093C6008091C00086FFC9
|
||||
:10F45000FCCF87C06EE07EEF80E090E0E622F722EE
|
||||
:10F46000082319237CE0E71674E9F70670E0070724
|
||||
:10F4700070E0170709F088C0C25DDE4F8881CE5268
|
||||
:10F48000D140E82EFF2400E010E0102F0F2DFE2CBD
|
||||
:10F49000EE24C35DDE4F9881CD52D140E90EF11CC0
|
||||
:10F4A000011D111DD601C50181709070A070B07052
|
||||
:10F4B000DC0199278827E80EF91E0A1F1B1F20EF81
|
||||
:10F4C00030E040E050E0A222B322C422D522F1E194
|
||||
:10F4D000AA0CBB1CCC1CDD1CFA95D1F7EA0CFB1C5A
|
||||
:10F4E0000C1D1D1D41E050E060E070E0242235223B
|
||||
:10F4F00046225722E5E1220C331C441C551CEA9598
|
||||
:10F50000D1F7E20CF31C041D151D57016801AA0C6C
|
||||
:10F51000BB1CCC1CDD1C8FE192EE60E00F942FF33E
|
||||
:10F52000C801AA27BB270F947EF3BB27A12F902FDA
|
||||
:10F530008F2D0F947EF38E2D0F947EF350E2509317
|
||||
:10F54000C6008091C00086FFFCCF8091C00080641F
|
||||
:10F550008093C0006EE36093C6008091C00086FF78
|
||||
:10F56000FCCF8091C00080648093C000C601AA27B0
|
||||
:10F57000BB270F947EF3BB27AD2D9C2D8B2D0F94B5
|
||||
:10F580007EF38A2D0F947EF370E27093C600809113
|
||||
:10F59000C00086FFFCCF8091C00080648093C000D3
|
||||
:10F5A000CC5DDE4FE881F981C452D140CF01AA275A
|
||||
:10F5B00097FDA095BA2FABBFFC018791969160E0B3
|
||||
:10F5C0000F942FF30F944DF3CC5DDE4F088119811A
|
||||
:10F5D000C452D1400E5F1F4FCC5DDE4F19830883AC
|
||||
:10F5E000C452D140CA5DDE4F28813981C652D14014
|
||||
:10F5F0002933310509F417CB44E050E060E070E0B6
|
||||
:10F60000640E751E861E971EC9CD80E393EE62E0E0
|
||||
:10F610000F9466F384E292EE60E00F942FF38091F2
|
||||
:10F62000C00087FFFCCF1091C6001F751093C60065
|
||||
:10F630008091C00086FFFCCF8091C00080648093E1
|
||||
:10F64000C0000F944DF3812F81548A3108F036C1E8
|
||||
:10F65000163409F495C0173490F4133409F44EC0ED
|
||||
:10F66000143430F41134F1F0123409F01DC130C0FB
|
||||
:10F67000143409F459C0153409F016C16BC01A349A
|
||||
:10F6800009F4C4C01B3438F4173409F48FC018349B
|
||||
:10F6900009F00AC1A1C01B3409F4D2C01C3409F01E
|
||||
:10F6A00003C1E8C08FEF81B90DC082B1809582B9E6
|
||||
:10F6B00080E090E0E0EDF7E03197F1F70196883CCB
|
||||
:10F6C0009105C1F78091C00087FFEFCF12B8EFC05E
|
||||
:10F6D0008FEF84B90DC085B1809585B980E090E049
|
||||
:10F6E000E0EDF7E03197F1F70196883C9105C1F71D
|
||||
:10F6F0008091C00087FFEFCF15B8D9C08FEF87B9D1
|
||||
:10F700000DC088B1809588B980E090E0E0EDF7E029
|
||||
:10F710003197F1F70196883C9105C1F78091C000BF
|
||||
:10F7200087FFEFCF18B8C3C08FEF8AB90DC08BB178
|
||||
:10F7300080958BB980E090E0E0EDF7E03197F1F74C
|
||||
:10F740000196883C9105C1F78091C00087FFEFCFFB
|
||||
:10F750001BB8ADC08FEF8DB90DC08EB180958EB93D
|
||||
:10F7600080E090E0E0EDF7E03197F1F70196883C1A
|
||||
:10F770009105C1F78091C00087FFEFCF1EB897C0F9
|
||||
:10F780008FEF80BB0DC081B3809581BB80E090E09E
|
||||
:10F79000E0EDF7E03197F1F70196883C9105C1F76C
|
||||
:10F7A0008091C00087FFEFCF11BA81C08FEF83BB7C
|
||||
:10F7B0000DC084B3809584BB80E090E0E0EDF7E07D
|
||||
:10F7C0003197F1F70196883C9105C1F78091C0000F
|
||||
:10F7D00087FFEFCF14BA6BC08FEF809301010FC08A
|
||||
:10F7E0008091020180958093020180E090E0E0ED3D
|
||||
:10F7F000F7E03197F1F70196883C9105C1F78091C8
|
||||
:10F80000C00087FFEDCF1092020151C08FEF8093AF
|
||||
:10F8100004010FC08091050180958093050180E06F
|
||||
:10F8200090E0E0EDF7E03197F1F70196883C910523
|
||||
:10F83000C1F78091C00087FFEDCF1092050137C05E
|
||||
:10F840008FEF809307010FC080910801809580930E
|
||||
:10F85000080180E090E0E0EDF7E03197F1F70196E4
|
||||
:10F86000883C9105C1F78091C00087FFEDCF1092D1
|
||||
:10F8700008011DC08FEF80930A010FC080910B011A
|
||||
:10F88000809580930B0180E090E0E0EDF7E0319708
|
||||
:10F89000F1F70196883C9105C1F78091C00087FF80
|
||||
:10F8A000EDCF10920B0103C08FE292EEB9C98091A7
|
||||
:10F8B000C00087FFFCCF8091C600B5C982E492EEFC
|
||||
:10F8C000AFC98CE191EEACC9AA24BB24933061F19D
|
||||
:10F8D000943028F4913089F0923008F508C09530C2
|
||||
:10F8E000B1F1953040F1963009F053C04EC02B3144
|
||||
:10F8F00009F020C991E06BE11DC9213041F0C15DE3
|
||||
:10F90000DE4F5881CF52D140251709F002C362273C
|
||||
:10F91000C15DDE4F2883CF52D14092E00BC9B22F98
|
||||
:10F92000A0E0622793E006C9822F90E0A82BB92BB4
|
||||
:10F93000622794E0FFC82E3009F0EBC2622795E001
|
||||
:10F94000C05DDE4F19821882C053D140F3C8E1E098
|
||||
:10F95000F0E0EC0FFD1FC05DDE4FE880F980C05382
|
||||
:10F96000D140EE0DFF1D208387010F5F1F4FC05D4B
|
||||
:10F97000DE4F19830883C053D14062270A171B0743
|
||||
:10F9800009F0D8C8D80196E0D5C8261709F0C1C239
|
||||
:10F9900003C0973009F0CEC899248981833109F4D6
|
||||
:10F9A000FCC08431C8F4863009F4C2C0873050F4FA
|
||||
:10F9B000823009F4F0C0833009F458C0813009F076
|
||||
:10F9C0000AC23EC0813109F462C0823108F0A6C08B
|
||||
:10F9D000803109F000C2DFC0883109F472C089317A
|
||||
:10F9E00050F4853109F4D9C0853108F477C18631E6
|
||||
:10F9F00009F0F1C173C18A3109F457C08A3108F4A2
|
||||
:10FA00007CC08B3109F446C08D3109F0E4C18D8191
|
||||
:10FA1000803311F090E00AC08F81882311F49EE1B9
|
||||
:10FA200005C0813011F091E001C098E91A821B8273
|
||||
:10FA30008D818C831D829E831F8227E030E0CFC1A1
|
||||
:10FA40001A8288E08B8381E48C8386E58D8382E54E
|
||||
:10FA50008E8389E48F8383E5888780E589878FE5B6
|
||||
:10FA60008A8782E38B872BE030E0B9C18A818139B4
|
||||
:10FA700041F0823941F0803911F48FE005C080E017
|
||||
:10FA800003C082E001C08AE01A828B8344C09924BB
|
||||
:10FA9000939481C08D81882311F48EE12CC0813034
|
||||
:10FAA00011F081E028C088E926C01A82E1E0F0E088
|
||||
:10FAB00089E08093570084918B831C8224E030E09E
|
||||
:10FAC0008EC18B81803589F48C81883039F4E2E0F5
|
||||
:10FAD000F0E089E08093570084910DC0E0E0F0E011
|
||||
:10FAE00089E080935700849106C0E3E0F0E089E06C
|
||||
:10FAF0008093570084911A82DFCF8D81836C99E0C7
|
||||
:10FB0000E1E0F0E0082E90935700E89507B600FC7E
|
||||
:10FB1000FDCF1A821B8223E030E061C11A82CE5CE5
|
||||
:10FB2000DE4F188219821A821B82C253D14055C1FE
|
||||
:10FB30008A8190E0A0E0B0E0582F442733272227A5
|
||||
:10FB40008B8190E0A0E0B0E0DC0199278827282B8A
|
||||
:10FB5000392B4A2B5B2B8D8190E0A0E0B0E0282B65
|
||||
:10FB6000392B4A2B5B2B8C8190E0A0E0B0E0BA2FC0
|
||||
:10FB7000A92F982F8827282B392B4A2B5B2B220F54
|
||||
:10FB8000331F441F551FC05EDE4F288339834A83CD
|
||||
:10FB90005B83C052D1401A8220C19A812B8183316C
|
||||
:10FBA00049F0C05EDE4F488159816A817B81C05235
|
||||
:10FBB000D1408AC0CE5CDE4F488159816A817B8109
|
||||
:10FBC000C253D140403080EC580783E0680780E0A2
|
||||
:10FBD0007807F0F483E0FA0160935B0080935700AC
|
||||
:10FBE000E89507B600FCFDCFCE5CDE4F4881598119
|
||||
:10FBF0006A817B81C253D14040505F4F6F4F7F4F2E
|
||||
:10FC0000CE5CDE4F488359836A837B83C253D140E5
|
||||
:10FC1000C95CDE4F9883C753D140CA5CDE4F18825F
|
||||
:10FC2000C653D140022F10E0CA5CDE4F6881798153
|
||||
:10FC3000C653D140062B172BC05EDE4F4881598139
|
||||
:10FC40006A817B81C052D140DE011B9631E08C91EC
|
||||
:10FC500011962C9111971296C75CDE4F2883C953D9
|
||||
:10FC6000D140C85CDE4F1882C853D14090E0C85CD8
|
||||
:10FC7000DE4FE881F981C853D1408E2B9F2B0C01B8
|
||||
:10FC8000FA0160935B0030935700E89511244E5FB2
|
||||
:10FC90005F4F6F4F7F4F02501040C9F685E0C05E46
|
||||
:10FCA000DE4FE880F9800A811B81C052D140F70104
|
||||
:10FCB00000935B0080935700E89507B600FCFDCFEA
|
||||
:10FCC00081E180935700E8951A82C05EDE4F488339
|
||||
:10FCD00059836A837B83C052D1407FC0FA80C55C60
|
||||
:10FCE000DE4FF882CB53D140C65CDE4F1882CA5338
|
||||
:10FCF000D1408B81C82EDD24C65CDE4F088119817E
|
||||
:10FD0000CA53D140C02AD12A1A828981BE016D5FAF
|
||||
:10FD10007F4F843121F59601C05EDE4FE880F98087
|
||||
:10FD20000A811B81C052D1400BBFF7018791969188
|
||||
:10FD3000DB018C9311969C936E5F7F4FD801C701B6
|
||||
:10FD40000296A11DB11DC05EDE4F88839983AA83F0
|
||||
:10FD5000BB83C052D14022503040F1F636C0C05E65
|
||||
:10FD6000DE4F288139814A815B81C052D14008949D
|
||||
:10FD7000C108D108760100E010E00894C11CD11C34
|
||||
:10FD80000894E11CF11C011D111DE20EF31E041F5D
|
||||
:10FD9000151F21BDBB27A52F942F832F82BD2F5F59
|
||||
:10FDA0003F4F4F4F5F4FF89A80B5DB018D93BD01F8
|
||||
:10FDB0002E153F054007510761F7C05EDE4F2883CF
|
||||
:10FDC00039834A835B83C052D14096012D5F3F4FF8
|
||||
:10FDD000FB01108204C080EC8A8322E030E08BE1DA
|
||||
:10FDE0008093C6008091C00086FFFCCF8091C00048
|
||||
:10FDF00080648093C000C15DDE4FF881CF52D14056
|
||||
:10FE0000F093C6008091C00086FFFCCF8091C000B7
|
||||
:10FE100080648093C000432F3093C6008091C0005F
|
||||
:10FE200086FFFCCF8091C00080648093C000922F39
|
||||
:10FE30002093C6008091C00086FFFCCF8091C00057
|
||||
:10FE400080648093C0008EE08093C6008091C000E3
|
||||
:10FE500086FFFCCF8091C00080648093C00065E184
|
||||
:10FE6000C15DDE4FE880CF52D1406E2569276427FF
|
||||
:10FE7000FE01319610C090819093C6008091C00021
|
||||
:10FE800086FFFCCF31968091C00080648093C000D3
|
||||
:10FE90006927215030402115310569F76093C6006C
|
||||
:10FEA0008091C00086FFFCCF8091C0008064809369
|
||||
:10FEB000C00085B1805885B9992081F4C15DDE4FBD
|
||||
:10FEC0000881CF52D1400F5FC15DDE4F0883CF5212
|
||||
:10FED000D14090E0A0E0B0E00D949AF527982F98DB
|
||||
:10FEE00080E090E020ED37E0F9013197F1F70196DD
|
||||
:10FEF00084369105C9F700008091C0008D7F809302
|
||||
:10FF0000C00081E180935700E895EE27FF27099410
|
||||
:10FF1000FFCF90E00D949AF597FB092E07260AD0A3
|
||||
:10FF200077FD04D02ED006D000201AF4709561958C
|
||||
:10FF30007F4F0895F6F7909581959F4F0895A1E220
|
||||
:10FF40001A2EAA1BBB1BFD010DC0AA1FBB1FEE1F53
|
||||
:10FF5000FF1FA217B307E407F50720F0A21BB30B9E
|
||||
:10FF6000E40BF50B661F771F881F991F1A9469F71A
|
||||
:10FF700060957095809590959B01AC01BD01CF0176
|
||||
:10FF80000895AA1BBB1B51E107C0AA1FBB1FA617E0
|
||||
:10FF9000B70710F0A61BB70B881F991F5A95A9F732
|
||||
:10FFA00080959095BC01CD010895F999FECF92BD41
|
||||
:10FFB00081BDF89A992780B50895262FF999FECF2B
|
||||
:10FFC0001FBA92BD81BD20BD0FB6F894FA9AF99A76
|
||||
:0AFFD0000FBE01960895F894FFCFCC
|
||||
:040000033000E000E9
|
||||
:00000001FF
|
@ -1 +0,0 @@
|
||||
<Project name="STK500V2"><File path="License.txt"></File><File path="Makefile"></File><File path="stk500boot.c"></File><File path="command.h"></File><File path="Readme.txt"></File></Project>
|
@ -1 +0,0 @@
|
||||
<pd><ViewState><e p="STK500V2" x="true"></e></ViewState></pd>
|
@ -0,0 +1,6 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit or delete the file
|
||||
################################################################################
|
||||
|
||||
stk500boot.c
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,174 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
|
||||
<PropertyGroup>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectVersion>7.0</ProjectVersion>
|
||||
<ToolchainName>com.Atmel.AVRGCC8.C</ToolchainName>
|
||||
<ProjectGuid>dce6c7e3-ee26-4d79-826b-08594b9ad897</ProjectGuid>
|
||||
<avrdevice>ATmega2560</avrdevice>
|
||||
<avrdeviceseries>none</avrdeviceseries>
|
||||
<OutputType>Executable</OutputType>
|
||||
<Language>C</Language>
|
||||
<OutputFileName>$(MSBuildProjectName)</OutputFileName>
|
||||
<OutputFileExtension>.elf</OutputFileExtension>
|
||||
<OutputDirectory>$(MSBuildProjectDirectory)\$(Configuration)</OutputDirectory>
|
||||
<AssemblyName>STK500</AssemblyName>
|
||||
<Name>stk500boot</Name>
|
||||
<RootNamespace>STK500</RootNamespace>
|
||||
<ToolchainFlavour>Native</ToolchainFlavour>
|
||||
<KeepTimersRunning>true</KeepTimersRunning>
|
||||
<OverrideVtor>false</OverrideVtor>
|
||||
<CacheFlash>true</CacheFlash>
|
||||
<ProgFlashFromRam>true</ProgFlashFromRam>
|
||||
<RamSnippetAddress>0x20000000</RamSnippetAddress>
|
||||
<UncachedRange />
|
||||
<preserveEEPROM>true</preserveEEPROM>
|
||||
<OverrideVtorValue>exception_table</OverrideVtorValue>
|
||||
<BootSegment>2</BootSegment>
|
||||
<ResetRule>0</ResetRule>
|
||||
<eraseonlaunchrule>0</eraseonlaunchrule>
|
||||
<EraseKey />
|
||||
<avrtool>com.atmel.avrdbg.tool.atmelice</avrtool>
|
||||
<avrtoolserialnumber>J41800094359</avrtoolserialnumber>
|
||||
<avrdeviceexpectedsignature>0x1E9801</avrdeviceexpectedsignature>
|
||||
<com_atmel_avrdbg_tool_atmelice>
|
||||
<ToolOptions>
|
||||
<InterfaceProperties>
|
||||
<JtagDbgClock>200000</JtagDbgClock>
|
||||
<IspClock>125000</IspClock>
|
||||
</InterfaceProperties>
|
||||
<InterfaceName>ISP</InterfaceName>
|
||||
</ToolOptions>
|
||||
<ToolType>com.atmel.avrdbg.tool.atmelice</ToolType>
|
||||
<ToolNumber>J41800094359</ToolNumber>
|
||||
<ToolName>Atmel-ICE</ToolName>
|
||||
</com_atmel_avrdbg_tool_atmelice>
|
||||
<avrtoolinterface>ISP</avrtoolinterface>
|
||||
<avrtoolinterfaceclock>125000</avrtoolinterfaceclock>
|
||||
<com_atmel_avrdbg_tool_simulator>
|
||||
<ToolOptions xmlns="">
|
||||
<InterfaceProperties>
|
||||
</InterfaceProperties>
|
||||
<InterfaceName>
|
||||
</InterfaceName>
|
||||
</ToolOptions>
|
||||
<ToolType xmlns="">com.atmel.avrdbg.tool.simulator</ToolType>
|
||||
<ToolNumber xmlns="">
|
||||
</ToolNumber>
|
||||
<ToolName xmlns="">Simulator</ToolName>
|
||||
</com_atmel_avrdbg_tool_simulator>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||
<ToolchainSettings>
|
||||
<AvrGcc>
|
||||
<avrgcc.common.Device>-mmcu=atmega2560 -B "%24(PackRepoDir)\Atmel\ATmega_DFP\1.7.374\gcc\dev\atmega2560"</avrgcc.common.Device>
|
||||
<avrgcc.common.optimization.RelaxBranches>True</avrgcc.common.optimization.RelaxBranches>
|
||||
<avrgcc.common.outputfiles.hex>True</avrgcc.common.outputfiles.hex>
|
||||
<avrgcc.common.outputfiles.lss>True</avrgcc.common.outputfiles.lss>
|
||||
<avrgcc.common.outputfiles.eep>True</avrgcc.common.outputfiles.eep>
|
||||
<avrgcc.common.outputfiles.srec>True</avrgcc.common.outputfiles.srec>
|
||||
<avrgcc.common.outputfiles.usersignatures>False</avrgcc.common.outputfiles.usersignatures>
|
||||
<avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>True</avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>
|
||||
<avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>True</avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>
|
||||
<avrgcc.compiler.symbols.DefSymbols>
|
||||
<ListValues>
|
||||
<Value>NDEBUG</Value>
|
||||
</ListValues>
|
||||
</avrgcc.compiler.symbols.DefSymbols>
|
||||
<avrgcc.compiler.directories.IncludePaths>
|
||||
<ListValues>
|
||||
<Value>%24(PackRepoDir)\Atmel\ATmega_DFP\1.7.374\include\</Value>
|
||||
</ListValues>
|
||||
</avrgcc.compiler.directories.IncludePaths>
|
||||
<avrgcc.compiler.optimization.level>Optimize for size (-Os)</avrgcc.compiler.optimization.level>
|
||||
<avrgcc.compiler.optimization.PackStructureMembers>True</avrgcc.compiler.optimization.PackStructureMembers>
|
||||
<avrgcc.compiler.optimization.AllocateBytesNeededForEnum>True</avrgcc.compiler.optimization.AllocateBytesNeededForEnum>
|
||||
<avrgcc.compiler.warnings.AllWarnings>True</avrgcc.compiler.warnings.AllWarnings>
|
||||
<avrgcc.linker.libraries.Libraries>
|
||||
<ListValues>
|
||||
<Value>libm</Value>
|
||||
</ListValues>
|
||||
</avrgcc.linker.libraries.Libraries>
|
||||
<avrgcc.assembler.general.IncludePaths>
|
||||
<ListValues>
|
||||
<Value>%24(PackRepoDir)\Atmel\ATmega_DFP\1.7.374\include\</Value>
|
||||
</ListValues>
|
||||
</avrgcc.assembler.general.IncludePaths>
|
||||
</AvrGcc>
|
||||
</ToolchainSettings>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||
<ToolchainSettings>
|
||||
<AvrGcc>
|
||||
<avrgcc.common.Device>-mmcu=atmega2560 -B "%24(PackRepoDir)\Atmel\ATmega_DFP\1.7.374\gcc\dev\atmega2560"</avrgcc.common.Device>
|
||||
<avrgcc.common.optimization.RelaxBranches>True</avrgcc.common.optimization.RelaxBranches>
|
||||
<avrgcc.common.outputfiles.hex>True</avrgcc.common.outputfiles.hex>
|
||||
<avrgcc.common.outputfiles.lss>True</avrgcc.common.outputfiles.lss>
|
||||
<avrgcc.common.outputfiles.eep>True</avrgcc.common.outputfiles.eep>
|
||||
<avrgcc.common.outputfiles.srec>True</avrgcc.common.outputfiles.srec>
|
||||
<avrgcc.common.outputfiles.usersignatures>False</avrgcc.common.outputfiles.usersignatures>
|
||||
<avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>True</avrgcc.compiler.general.ChangeDefaultCharTypeUnsigned>
|
||||
<avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>True</avrgcc.compiler.general.ChangeDefaultBitFieldUnsigned>
|
||||
<avrgcc.compiler.symbols.DefSymbols>
|
||||
<ListValues>
|
||||
<Value>DEBUG</Value>
|
||||
<Value>F_CPU=16000000UL</Value>
|
||||
</ListValues>
|
||||
</avrgcc.compiler.symbols.DefSymbols>
|
||||
<avrgcc.compiler.directories.IncludePaths>
|
||||
<ListValues>
|
||||
<Value>%24(PackRepoDir)\Atmel\ATmega_DFP\1.7.374\include\</Value>
|
||||
</ListValues>
|
||||
</avrgcc.compiler.directories.IncludePaths>
|
||||
<avrgcc.compiler.optimization.level>Optimize for size (-Os)</avrgcc.compiler.optimization.level>
|
||||
<avrgcc.compiler.optimization.PackStructureMembers>True</avrgcc.compiler.optimization.PackStructureMembers>
|
||||
<avrgcc.compiler.optimization.AllocateBytesNeededForEnum>True</avrgcc.compiler.optimization.AllocateBytesNeededForEnum>
|
||||
<avrgcc.compiler.optimization.DebugLevel>Default (-g2)</avrgcc.compiler.optimization.DebugLevel>
|
||||
<avrgcc.compiler.warnings.AllWarnings>True</avrgcc.compiler.warnings.AllWarnings>
|
||||
<avrgcc.linker.libraries.Libraries>
|
||||
<ListValues>
|
||||
<Value>libm</Value>
|
||||
</ListValues>
|
||||
</avrgcc.linker.libraries.Libraries>
|
||||
<avrgcc.linker.memorysettings.Flash>
|
||||
<ListValues>
|
||||
<Value>.text=3e000</Value>
|
||||
</ListValues>
|
||||
</avrgcc.linker.memorysettings.Flash>
|
||||
<avrgcc.assembler.general.IncludePaths>
|
||||
<ListValues>
|
||||
<Value>%24(PackRepoDir)\Atmel\ATmega_DFP\1.7.374\include\</Value>
|
||||
</ListValues>
|
||||
</avrgcc.assembler.general.IncludePaths>
|
||||
<avrgcc.assembler.debugging.DebugLevel>Default (-Wa,-g)</avrgcc.assembler.debugging.DebugLevel>
|
||||
</AvrGcc>
|
||||
</ToolchainSettings>
|
||||
<UsesExternalMakeFile>False</UsesExternalMakeFile>
|
||||
<OutputDirectory>$(MSBuildProjectDirectory)\$(Configuration)</OutputDirectory>
|
||||
<BuildTarget>mega2560</BuildTarget>
|
||||
<CleanTarget>clean</CleanTarget>
|
||||
<ExternalMakeFilePath>C:\Users\Kirill\Documents\GIT\STK500\STK500\Debug\Makefile</ExternalMakeFilePath>
|
||||
<OutputFileName>stk500boot_v2_mega2560</OutputFileName>
|
||||
<OutputFileExtension>.elf</OutputFileExtension>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="avrinterruptnames.h">
|
||||
<SubType>compile</SubType>
|
||||
</Compile>
|
||||
<Compile Include="avr_cpunames.h">
|
||||
<SubType>compile</SubType>
|
||||
</Compile>
|
||||
<Compile Include="command.h">
|
||||
<SubType>compile</SubType>
|
||||
</Compile>
|
||||
<Compile Include="stk500boot.c">
|
||||
<SubType>compile</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="License.txt">
|
||||
<SubType>compile</SubType>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<Import Project="$(AVRSTUDIO_EXE_PATH)\\Vs\\Compiler.targets" />
|
||||
</Project>
|
@ -0,0 +1,67 @@
|
||||
stk500boot.d stk500boot.o: .././stk500boot.c \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\inttypes.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\5.4.0\include\stdint.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\stdint.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\io.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\sfr_defs.h \
|
||||
C:\Program\ Files\ (x86)\Atmel\Studio\7.0\Packs\Atmel\ATmega_DFP\1.7.374\include/avr/iom2560.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\portpins.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\common.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\version.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\fuse.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\lock.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\interrupt.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\boot.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\eeprom.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\5.4.0\include\stddef.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\5.4.0\include-fixed\limits.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\pgmspace.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\util\delay.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\util\delay_basic.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\math.h \
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\stdlib.h \
|
||||
.././command.h
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\inttypes.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\5.4.0\include\stdint.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\stdint.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\io.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\sfr_defs.h:
|
||||
|
||||
C:\Program\ Files\ (x86)\Atmel\Studio\7.0\Packs\Atmel\ATmega_DFP\1.7.374\include/avr/iom2560.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\portpins.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\common.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\version.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\fuse.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\lock.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\interrupt.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\boot.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\eeprom.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\5.4.0\include\stddef.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\lib\gcc\avr\5.4.0\include-fixed\limits.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\avr\pgmspace.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\util\delay.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\util\delay_basic.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\math.h:
|
||||
|
||||
c:\program\ files\ (x86)\atmel\studio\7.0\toolchain\avr8\avr8-gnu-toolchain\avr\include\stdlib.h:
|
||||
|
||||
.././command.h:
|
Binary file not shown.
@ -1 +0,0 @@
|
||||
<Workspace name="Bootloader"><Project path="STK500V2.pnproj"></Project></Workspace>
|
@ -0,0 +1,2 @@
|
||||
:040000033000E000E9
|
||||
:00000001FF
|
Binary file not shown.
@ -1,469 +1,124 @@
|
||||
:020000023000CC
|
||||
:10E000000D9489F10D94B2F10D94B2F10D94B2F129
|
||||
:10E010000D94B2F10D94B2F10D94B2F10D94B2F1F0
|
||||
:10E020000D94B2F10D94B2F10D94B2F10D94B2F1E0
|
||||
:10E030000D94B2F10D94B2F10D94B2F10D94B2F1D0
|
||||
:10E040000D94B2F10D94B2F10D94B2F10D94B2F1C0
|
||||
:10E050000D94B2F10D94B2F10D94B2F10D94B2F1B0
|
||||
:10E060000D94B2F10D94B2F10D94B2F10D94B2F1A0
|
||||
:10E070000D94B2F10D94B2F10D94B2F10D94B2F190
|
||||
:10E080000D94B2F10D94B2F10D94B2F10D94B2F180
|
||||
:10E090000D94B2F10D94B2F10D94B2F10D94B2F170
|
||||
:10E0A0000D94B2F10D94B2F10D94B2F10D94B2F160
|
||||
:10E0B0000D94B2F10D94B2F10D94B2F10D94B2F150
|
||||
:10E0C0000D94B2F10D94B2F10D94B2F10D94B2F140
|
||||
:10E0D0000D94B2F10D94B2F10D94B2F10D94B2F130
|
||||
:10E0E0000D94B2F141546D656761323536300041AF
|
||||
:10E0F000726475696E6F206578706C6F72657220DE
|
||||
:10E1000073746B3530305632206279204D4C530099
|
||||
:10E11000426F6F746C6F616465723E004875683F52
|
||||
:10E1200000436F6D70696C6564206F6E203D200048
|
||||
:10E130004350552054797065202020203D20005FF9
|
||||
:10E140005F4156525F415243485F5F3D2000415658
|
||||
:10E1500052204C696243205665723D20004743437C
|
||||
:10E160002056657273696F6E203D20004350552024
|
||||
:10E1700049442020202020203D20004C6F7720663D
|
||||
:10E18000757365202020203D20004869676820665F
|
||||
:10E190007573652020203D200045787420667573D6
|
||||
:10E1A00065202020203D20004C6F636B2066757336
|
||||
:10E1B000652020203D20004D617220203720323024
|
||||
:10E1C000313300312E362E3800342E332E350056A2
|
||||
:10E1D00023202020414444522020206F7020636F70
|
||||
:10E1E00064652020202020696E73747275637469E1
|
||||
:10E1F0006F6E2061646472202020496E74657272B3
|
||||
:10E20000757074006E6F20766563746F7200726A49
|
||||
:10E210006D702020006A6D70200057686174207056
|
||||
:10E220006F72743A00506F7274206E6F7420737541
|
||||
:10E2300070706F72746564004D7573742062652030
|
||||
:10E2400061206C6574746572002000577269747483
|
||||
:10E25000696E672045450052656164696E672045B7
|
||||
:10E26000450045452065727220636E743D00504F35
|
||||
:10E27000525400303D5A65726F2061646472003FF1
|
||||
:10E280003D43505520737461747300403D454550C3
|
||||
:10E29000524F4D207465737400423D426C696E6B41
|
||||
:10E2A000204C454400453D44756D70204545505215
|
||||
:10E2B0004F4D00463D44756D7020464C415348001B
|
||||
:10E2C000483D48656C70004C3D4C69737420492F83
|
||||
:10E2D0004F20506F72747300513D51756974005234
|
||||
:10E2E0003D44756D702052414D00563D73686F7707
|
||||
:10E2F00020696E7465727275707420566563746FF0
|
||||
:10E30000727300593D506F727420626C696E6B00BD
|
||||
:10E310002A0011241FBECFEFD1E2DEBFCDBF01E046
|
||||
:10E320000CBF12E0A0E0B2E0EEE1FDEF03E00BBFB6
|
||||
:10E3300002C007900D92A030B107D9F712E0A0E01B
|
||||
:10E34000B2E001C01D92AE30B107E1F70F9460F367
|
||||
:10E350000D948DFE01E20EBF0FEF0DBF11241FBE05
|
||||
:10E360000D9460F30D9400F020E030E040ED57E0B4
|
||||
:10E3700005C0FA013197F1F72F5F3F4F2817390792
|
||||
:10E38000C0F308959C01260F311DC901A0E0B0E043
|
||||
:10E390002F5F3F4FABBFFC018791882361F08093D3
|
||||
:10E3A000C6008091C00086FFFCCF8091C0008064D1
|
||||
:10E3B0008093C000EACF08958DE08093C6008091DD
|
||||
:10E3C000C00086FFFCCF8091C00080648093C000B5
|
||||
:10E3D0008AE08093C6008091C00086FFFCCF8091C8
|
||||
:10E3E000C00080648093C00008950F94C2F10F9420
|
||||
:10E3F000DCF10895FC019081992359F09093C600B7
|
||||
:10E400008091C00086FFFCCF8091C0008064809323
|
||||
:10E41000C0003196992379F70895282F982F929567
|
||||
:10E420009F70892F805D8A3308F0895F8093C600D2
|
||||
:10E430008091C00086FFFCCF8091C00080648093F3
|
||||
:10E44000C000822F8F70982F905D9A3308F0995FEB
|
||||
:10E450009093C6008091C00086FFFCCF8091C000E1
|
||||
:10E4600080648093C00008959C01FB01853691056E
|
||||
:10E470001CF46330710594F0C90164E670E00F94F8
|
||||
:10E480002EFE605D7F4F6093C6008091C00086FFC6
|
||||
:10E49000FCCF8091C00080648093C0002B30310598
|
||||
:10E4A00014F43297B4F0C90164E670E00F942EFEC4
|
||||
:10E4B0006AE070E00F942EFE605D7F4F6093C600AF
|
||||
:10E4C0008091C00086FFFCCF8091C0008064809363
|
||||
:10E4D000C000C9016AE070E00F942EFEC0968093E0
|
||||
:10E4E000C6008091C00086FFFCCF8091C000806490
|
||||
:10E4F0008093C00008951F93182F8EE692EE60E07F
|
||||
:10E500000F94C2F11093C6008091C00086FFFCCF2B
|
||||
:10E510008091C00080648093C0000F94DCF11F9153
|
||||
:10E5200008952F923F924F925F926F927F928F92B7
|
||||
:10E530009F92AF92BF92CF92DF92EF92FF920F9392
|
||||
:10E540001F93DF93CF93CDB7DEB762970FB6F894E2
|
||||
:10E55000DEBF0FBECDBF382E622ECA01DB015C01CB
|
||||
:10E560006D01772420E2222E2E010894411C511CBB
|
||||
:10E570008BC081E0A81680E0B80681E0C80680E084
|
||||
:10E58000D80628F0C601AA27BB270F940DF2BB2797
|
||||
:10E59000AD2D9C2D8B2D0F940DF28A2D0F940DF225
|
||||
:10E5A0002092C6008091C00086FFFCCF8091C00001
|
||||
:10E5B00080648093C0009DE29093C6008091C0006B
|
||||
:10E5C00086FFFCCF8091C00080648093C0002092C1
|
||||
:10E5D000C6008091C00086FFFCCF8091C00080649F
|
||||
:10E5E0008093C00019828601750188249924A1E0D6
|
||||
:10E5F0003A1651F03A1620F0B2E03B1661F409C029
|
||||
:10E600000BBFF701779007C0C7010F9477FE782EF4
|
||||
:10E6100002C0F7017080872D0F940DF22092C60082
|
||||
:10E620008091C00086FFFCCF8091C0008064809301
|
||||
:10E63000C000872D8052F401EF70F0708F3520F408
|
||||
:10E64000E40DF51D708204C0E40DF51D8EE280839B
|
||||
:10E650000894E11CF11C011D111D0894811C911CE2
|
||||
:10E6600090E18916910409F0C2CF80E190E0A0E02A
|
||||
:10E67000B0E0A80EB91ECA1EDB1E198AC2010F9493
|
||||
:10E68000FAF10F94DCF16A94662009F072CF629679
|
||||
:10E690000FB6F894DEBF0FBECDBFCF91DF911F91B3
|
||||
:10E6A0000F91FF90EF90DF90CF90BF90AF909F9031
|
||||
:10E6B0008F907F906F905F904F903F902F90089534
|
||||
:10E6C0002F923F924F925F926F927F928F929F9282
|
||||
:10E6D000AF92BF92CF92DF92EF92FF920F931F9370
|
||||
:10E6E000DF93CF93CDB7DEB7CD53D1400FB6F894BB
|
||||
:10E6F000DEBF0FBECDBF01E20EBF0FEF0DBF94B75F
|
||||
:10E70000F894A89514BE80916000886180936000A1
|
||||
:10E7100010926000789493FF05C0E0910002F091A0
|
||||
:10E7200001021995279A2F9A8091C00082608093E8
|
||||
:10E73000C00080E18093C40088E18093C1000000A4
|
||||
:10E74000EE24FF24870144E0A42EB12CCC24DD2448
|
||||
:10E7500024C0C5010197F1F70894E11CF11C011DCB
|
||||
:10E76000111D21E2E2162EE4F20620E0020720E06D
|
||||
:10E77000120718F031E0C32ED12CC801B70127ECE5
|
||||
:10E780003BE140E050E00F9441FE611571058105C9
|
||||
:10E79000910519F485B1805885B98091C00087FD35
|
||||
:10E7A00003C0C114D104A9F2A6014F5F5F4FC25E3E
|
||||
:10E7B000DE4F59834883CE51D140C25EDE4F8881FF
|
||||
:10E7C0009981CE51D140019711F00D9410FEC05D9A
|
||||
:10E7D000DE4F19821882C053D14060E0C15DDE4F28
|
||||
:10E7E0001882CF52D14088249924C35DDE4F19820C
|
||||
:10E7F0001882CD52D140C05EDE4F188219821A8233
|
||||
:10E800001B82C052D140CE5CDE4F188219821A8220
|
||||
:10E810001B82C253D140EE24FF2487010BBFF701B6
|
||||
:10E8200007911691C45CDE4F19830883CC53D14005
|
||||
:10E830000D940BFEC25EDE4F28813981CE51D1404E
|
||||
:10E840002130310509F52091C600C25EDE4F1982E4
|
||||
:10E850001882CE51D14022C02F5F3F4F4F4F5F4FA4
|
||||
:10E86000213082E138078AE7480780E0580780F0C6
|
||||
:10E87000C45CDE4FE881F981CC53D140EF5FFF4F9C
|
||||
:10E8800019F0EE27FF27099420E030E040E050E047
|
||||
:10E890008091C00087FFE0CF2091C600C35DDE4FAE
|
||||
:10E8A00048815981CD52D1404F5F5F4FC35DDE4FEC
|
||||
:10E8B00059834883CD52D140213209F063C64A3092
|
||||
:10E8C000510508F05FC60894811C911C53E0851621
|
||||
:10E8D000910409F059C600E010E018C081E280936D
|
||||
:10E8E000C6008091C00086FFFCCF8091C00080648C
|
||||
:10E8F0008093C0002F5F3F4F2931310579F70F9486
|
||||
:10E90000DCF10F5F1F4F0530110519F020E030E0FA
|
||||
:10E91000E5CF10920A0210920B0210920C02109294
|
||||
:10E920000D02109206021092070210920802109235
|
||||
:10E930000902109202021092030210920402109235
|
||||
:10E9400005028FEE90EE60E00F94F5F180E191EE1C
|
||||
:10E9500060E00F94C2F18091C00087FFFCCF9091DE
|
||||
:10E96000C600903608F09F759032B8F09093C600BC
|
||||
:10E970008091C00086FFFCCF8091C00080648093AE
|
||||
:10E98000C000A0E2A093C6008091C00086FFFCCF2B
|
||||
:10E990008091C00080648093C000983409F4D7C18E
|
||||
:10E9A0009934B8F4923409F459C1933458F490333B
|
||||
:10E9B00019F1903308F4E3C59F33A1F1903409F0C5
|
||||
:10E9C000DEC5BDC0953409F470C1963409F0D7C5D1
|
||||
:10E9D00098C1923509F42BC2933538F49C3409F46C
|
||||
:10E9E000F5C1913509F0CBC518C2963509F445C279
|
||||
:10E9F000993509F0C4C567C483E792EE62E00F94CD
|
||||
:10EA0000F5F110920602109207021092080210927D
|
||||
:10EA1000090210920A0210920B0210920C0210923C
|
||||
:10EA20000D0213C18FE792EE62E00F94F5F18FEEC5
|
||||
:10EA300090EE60E00F94F5F181E291EE60E00F94CA
|
||||
:10EA4000C2F187EB91EE60E00F94F5F180E391EE77
|
||||
:10EA500060E00F94C2F184EE90EE60E00F94F5F167
|
||||
:10EA60008FE391EE60E00F94C2F186E090E061E008
|
||||
:10EA700070E00F9434F20F94DCF18DE591EE60E0DC
|
||||
:10EA80000F94C2F189EC91EE60E00F94F5F18EE401
|
||||
:10EA900091EE60E00F94C2F183EC91EE60E00F9490
|
||||
:10EAA000F5F18CE691EE60E00F94C2F18EE10F94E7
|
||||
:10EAB0000DF288E90F940DF281E00F940DF20F949E
|
||||
:10EAC000DCF18BE791EE60E00F94C2F119E0E0E039
|
||||
:10EAD000F0E010935700E4918E2F0F940DF20F94F5
|
||||
:10EAE000DCF18AE891EE60E00F94C2F1E3E0F0E03F
|
||||
:10EAF00010935700E4918E2F0F940DF20F94DCF1D8
|
||||
:10EB000089E991EE60E00F94C2F1E2E0F0E0109349
|
||||
:10EB10005700E4918E2F0F940DF20F94DCF188EAE8
|
||||
:10EB200091EE60E00F94C2F1E1E0F0E01093570045
|
||||
:10EB30001491812F0F940DF20F94DCF107CF8BE825
|
||||
:10EB400092EE62E00F94F5F18BE492EE60E00F94A8
|
||||
:10EB5000F5F10F94DCF100E010E019C0C8016F2D51
|
||||
:10EB60000F947FFEFF2031F489E492EE60E00F9471
|
||||
:10EB7000C2F10BC0F092C6008091C00086FFFCCFAE
|
||||
:10EB80008091C00080648093C0000F5F1F4FC80158
|
||||
:10EB900081519F41A0E0B0E0ABBFFC01F790BAE229
|
||||
:10EBA000FB1621F0E2E000301E07C1F60F94DCF105
|
||||
:10EBB0000F94DCF187E592EE60E00F94F5F10F948D
|
||||
:10EBC000DCF1CC24DD2400E010E01EC0C8010F946D
|
||||
:10EBD00077FEF82E882331F489E492EE60E00F94FA
|
||||
:10EBE000C2F10BC08093C6008091C00086FFFCCFAD
|
||||
:10EBF0008091C00080648093C000FE1419F00894D6
|
||||
:10EC0000C11CD11C0F5F1F4FC80181519F41A0E063
|
||||
:10EC1000B0E0ABBFFC01E790FAE2EF1621F022E092
|
||||
:10EC20000030120799F60F94DCF10F94DCF182E6C4
|
||||
:10EC300092EE60E00F94C2F1C60161E070E00F94C3
|
||||
:10EC400034F20F94DCF10F94DCF110920202109276
|
||||
:10EC50000302109204021092050278CE89E992EE26
|
||||
:10EC600062E00F94F5F1279A2F9A16C02F9880E052
|
||||
:10EC700090E0E0EDF7E03197F1F7019684369105E9
|
||||
:10EC8000C1F72F9A80E090E0E0EDF7E03197F1F7DF
|
||||
:10EC9000019684369105C1F78091C00087FFE6CFC9
|
||||
:10ECA0008091C00087FFFCCF64C485EA92EE62E0E9
|
||||
:10ECB0000F94F5F140910202509103026091040219
|
||||
:10ECC0007091050281E020E10F9491F2809102029F
|
||||
:10ECD00090910302A0910402B091050280509F4FD1
|
||||
:10ECE000AF4FBF4F8093020290930302A0930402A0
|
||||
:10ECF000B093050280509041A040B04008F426CE69
|
||||
:10ED0000A4CF83EB92EE62E00F94F5F140910602FE
|
||||
:10ED100050910702609108027091090280E020E1A1
|
||||
:10ED20000F9491F28091060290910702A09108023F
|
||||
:10ED3000B091090280509F4FAF4FBF4F80930602A2
|
||||
:10ED400090930702A0930802B0930902FFCD80ECD4
|
||||
:10ED500092EE62E00F94F5F183E792EE60E00F949B
|
||||
:10ED6000F5F18FE792EE60E00F94F5F18BE892EE0B
|
||||
:10ED700060E00F94F5F189E992EE60E00F94F5F10F
|
||||
:10ED800085EA92EE60E00F94F5F183EB92EE60E09D
|
||||
:10ED90000F94F5F180EC92EE60E00F94F5F187ECC2
|
||||
:10EDA00092EE60E00F94F5F188ED92EE60E00F9442
|
||||
:10EDB000F5F18FED92EE60E00F94F5F18AEE92EEB0
|
||||
:10EDC00060E00F94F5F183E093EEBDCD87EC92EE19
|
||||
:10EDD00062E00F94F5F181E40F947BF282E40F94EA
|
||||
:10EDE0007BF283E40F947BF284E40F947BF285E45E
|
||||
:10EDF0000F947BF286E40F947BF287E40F947BF20E
|
||||
:10EE000088E40F947BF28AE40F947BF28BE40F94F6
|
||||
:10EE10007BF28CE40F947BF299CD88ED92EE62E068
|
||||
:10EE20000F94F5F1772473948824992409C48FED05
|
||||
:10EE300092EE62E00F94F5F140910A0250910B02BC
|
||||
:10EE400060910C0270910D0282E020E10F9491F22A
|
||||
:10EE500080910A0290910B02A0910C02B0910D02D8
|
||||
:10EE600080509F4FAF4FBF4F80930A0290930B0289
|
||||
:10EE7000A0930C02B0930D0269CD8AEE92EE62E08F
|
||||
:10EE80000F94F5F184EE90EE60E00F94F5F18FECC5
|
||||
:10EE900091EE60E00F94F5F1662477244301CC5D98
|
||||
:10EEA000DE4F19821882C452D140D401C301B695F5
|
||||
:10EEB000A79597958795CA5DDE4F88839983AA8326
|
||||
:10EEC000BB83C652D140CC5DDE4FA881B981C4520C
|
||||
:10EED000D1401196CC5DDE4FB983A883C452D14096
|
||||
:10EEE000CD0162E070E00F9434F2B0E2B093C6005E
|
||||
:10EEF0008091C00086FFFCCF8091C0008064809329
|
||||
:10EF0000C000EDE2E093C6008091C00086FFFCCF18
|
||||
:10EF10008091C00080648093C000F0E2F093C6004E
|
||||
:10EF20008091C00086FFFCCF8091C00080648093F8
|
||||
:10EF3000C000CA5DDE4FE880F9800A811B81C6529D
|
||||
:10EF4000D140BB27A12F902F8F2D0F940DF2CA5DBA
|
||||
:10EF5000DE4F8881C652D1400F940DF2B0E2FB2EF5
|
||||
:10EF6000F092C6008091C00086FFFCCF8091C00067
|
||||
:10EF700080648093C0000DE30093C6008091C000C0
|
||||
:10EF800086FFFCCF8091C00080648093C00010E2B7
|
||||
:10EF90001093C6008091C00086FFFCCF8091C00016
|
||||
:10EFA00080648093C0008BBEF3012791C65DDE4F65
|
||||
:10EFB0002883CA52D140A22EBB24CC24DD2408943D
|
||||
:10EFC000611C711C811C911C8BBEF3018791282E42
|
||||
:10EFD0003324442455240894611C711C811C911C09
|
||||
:10EFE0008BBEF3013791C55DDE4F3883CB52D140E4
|
||||
:10EFF0000894611C711C811C911C8BBEF30147910C
|
||||
:10F00000C45DDE4F4883CC52D140ADEFEA2EAFEF66
|
||||
:10F01000FA2EAFEF0A2FAFEF1A2F6E0C7F1C801E57
|
||||
:10F02000911E142D032DF22CEE24EA0CFB1C0C1D5A
|
||||
:10F030001D1D0F940DF220E22093C6008091C000A8
|
||||
:10F0400086FFFCCF8091C00080648093C000C65DC5
|
||||
:10F05000DE4F8881CA52D1400F940DF230E23093D6
|
||||
:10F06000C6008091C00086FFFCCF8091C000806404
|
||||
:10F070008093C000C45DDE4F8881CC52D1400F9494
|
||||
:10F080000DF240E24093C6008091C00086FFFCCFA5
|
||||
:10F090008091C00080648093C000C55DDE4F888190
|
||||
:10F0A000CB52D1400F940DF250E25093C6008091A4
|
||||
:10F0B000C00086FFFCCF8091C00080648093C000B8
|
||||
:10F0C0008FEFE8168FEFF80680E0080780E018075A
|
||||
:10F0D00031F484E092EE60E00F94C2F1DFC0D80119
|
||||
:10F0E000C7018070907CA070B0708050904CA040A0
|
||||
:10F0F000B040D1F52FEF3FE340E050E0E222F322B1
|
||||
:10F1000004231523CA5DDE4FA880B980CA80DB8046
|
||||
:10F11000C652D140AE0CBF1CC01ED11EAA0CBB1CD7
|
||||
:10F12000CC1CDD1C8EE092EE60E00F94C2F1BB2798
|
||||
:10F13000A12F902F8F2D0F940DF28E2D0F940DF285
|
||||
:10F1400030E23093C6008091C00086FFFCCF8091F2
|
||||
:10F15000C00080648093C0004EE34093C60080915D
|
||||
:10F16000C00086FFFCCF87C08EE09EEFA0E0B0E03D
|
||||
:10F17000E822F9220A231B239CE0E91694E9F90608
|
||||
:10F1800090E0090790E0190709F088C0C45DDE4FE0
|
||||
:10F19000A881CC52D140EA2EFF2400E010E0102FCD
|
||||
:10F1A0000F2DFE2CEE24C55DDE4FB881CB52D14031
|
||||
:10F1B000EB0EF11C011D111DD601C501817090706F
|
||||
:10F1C000A070B070DC0199278827E80EF91E0A1F8D
|
||||
:10F1D0001B1F20EF30E040E050E0A222B322C42207
|
||||
:10F1E000D52241E1AA0CBB1CCC1CDD1C4A95D1F7F1
|
||||
:10F1F000EA0CFB1C0C1D1D1D81E090E0A0E0B0E0BE
|
||||
:10F20000282239224A225B2235E1220C331C441C7D
|
||||
:10F21000551C3A95D1F7E20CF31C041D151D57013E
|
||||
:10F220006801AA0CBB1CCC1CDD1C85E192EE60E0E1
|
||||
:10F230000F94C2F1C801AA27BB270F940DF2BB2778
|
||||
:10F24000A12F902F8F2D0F940DF28E2D0F940DF274
|
||||
:10F2500090E29093C6008091C00086FFFCCF809121
|
||||
:10F26000C00080648093C000AEE3A093C60080918C
|
||||
:10F27000C00086FFFCCF8091C00080648093C000F6
|
||||
:10F28000C601AA27BB270F940DF2BB27AD2D9C2DDD
|
||||
:10F290008B2D0F940DF28A2D0F940DF20F94DCF14B
|
||||
:10F2A000CC5DDE4FE881F981C452D140F99709F471
|
||||
:10F2B0004DCBF4E0EF2EF12C012D112D6E0C7F1CA7
|
||||
:10F2C000801E911EF2CD83E093EE62E00F94F5F183
|
||||
:10F2D0008AE192EE60E00F94C2F18091C00087FF56
|
||||
:10F2E000FCCF1091C6001F751093C6008091C0001E
|
||||
:10F2F00086FFFCCF8091C00080648093C0000F9493
|
||||
:10F30000DCF1812F81548A3108F036C1163409F4BA
|
||||
:10F3100095C0173490F4133409F44EC0143430F40B
|
||||
:10F320001134F1F0123409F01DC130C0143409F465
|
||||
:10F3300059C0153409F016C16BC01A3409F4C4C0A1
|
||||
:10F340001B3438F4173409F48FC0183409F00AC19B
|
||||
:10F35000A1C01B3409F4D2C01C3409F003C1E8C0B9
|
||||
:10F360008FEF81B90DC082B1809582B980E090E0C5
|
||||
:10F37000E0EDF7E03197F1F70196883C9105C1F790
|
||||
:10F380008091C00087FFEFCF12B8EFC08FEF84B934
|
||||
:10F390000DC085B1809585B980E090E0E0EDF7E0A3
|
||||
:10F3A0003197F1F70196883C9105C1F78091C00033
|
||||
:10F3B00087FFEFCF15B8D9C08FEF87B90DC088B1DF
|
||||
:10F3C000809588B980E090E0E0EDF7E03197F1F7C3
|
||||
:10F3D0000196883C9105C1F78091C00087FFEFCF6F
|
||||
:10F3E00018B8C3C08FEF8AB90DC08BB180958BB9A7
|
||||
:10F3F00080E090E0E0EDF7E03197F1F70196883C8E
|
||||
:10F400009105C1F78091C00087FFEFCF1BB8ADC059
|
||||
:10F410008FEF8DB90DC08EB180958EB980E090E0F0
|
||||
:10F42000E0EDF7E03197F1F70196883C9105C1F7DF
|
||||
:10F430008091C00087FFEFCF1EB897C08FEF80BBD1
|
||||
:10F440000DC081B3809581BB80E090E0E0EDF7E0F6
|
||||
:10F450003197F1F70196883C9105C1F78091C00082
|
||||
:10F4600087FFEFCF11BA81C08FEF83BB0DC084B38C
|
||||
:10F47000809584BB80E090E0E0EDF7E03197F1F714
|
||||
:10F480000196883C9105C1F78091C00087FFEFCFBE
|
||||
:10F4900014BA6BC08FEF809301010FC080910201FD
|
||||
:10F4A00080958093020180E090E0E0EDF7E03197F5
|
||||
:10F4B000F1F70196883C9105C1F78091C00087FF64
|
||||
:10F4C000EDCF1092020151C08FEF809304010FC065
|
||||
:10F4D0008091050180958093050180E090E0E0ED4A
|
||||
:10F4E000F7E03197F1F70196883C9105C1F78091DB
|
||||
:10F4F000C00087FFEDCF1092050137C08FEF8093DA
|
||||
:10F5000007010FC08091080180958093080180E079
|
||||
:10F5100090E0E0EDF7E03197F1F70196883C910536
|
||||
:10F52000C1F78091C00087FFEDCF109208011DC088
|
||||
:10F530008FEF80930A010FC080910B01809580931B
|
||||
:10F540000B0180E090E0E0EDF7E03197F1F70196F4
|
||||
:10F55000883C9105C1F78091C00087FFEDCF1092E4
|
||||
:10F560000B0103C085E292EEEEC98091C00087FFD7
|
||||
:10F57000FCCF8091C600EAC988E392EEE4C98CE131
|
||||
:10F5800091EEE1C988249924933011F1943028F444
|
||||
:10F59000913089F09230B8F408C0953061F195301F
|
||||
:10F5A000F0F0963009F048C043C02B3109F042C951
|
||||
:10F5B00091E06BE13FC96227C15DDE4F2883CF52E6
|
||||
:10F5C000D14092E037C9B22FA0E0622793E032C960
|
||||
:10F5D000822F90E0A82BB92B622794E02BC92E3004
|
||||
:10F5E00009F039C3622795E0C05DDE4F19821882A9
|
||||
:10F5F000C053D1401FC9E1E0F0E0EC0FFD1FC05D3A
|
||||
:10F60000DE4F08811981C053D140E00FF11F2083E4
|
||||
:10F610000F5F1F4FC05DDE4F19830883C053D14079
|
||||
:10F6200062270A171B0709F005C9D80196E002C92D
|
||||
:10F63000261709F010C303C0973009F0FBC87724E0
|
||||
:10F640009981933109F412C19431C8F4963009F4C8
|
||||
:10F65000D8C0973050F4923009F406C1933009F4C1
|
||||
:10F660006DC0913009F059C253C0913109F477C08F
|
||||
:10F67000923108F0BBC0903109F04FC2F5C098310B
|
||||
:10F6800009F487C0993150F4953109F4EFC09531F0
|
||||
:10F6900008F4C6C1963109F040C2C2C19A3109F4DA
|
||||
:10F6A0006CC09A3108F491C09B3109F45BC09D3164
|
||||
:10F6B00009F033C29D81903359F48F81882311F46E
|
||||
:10F6C0009EE11CC0813011F091E018C098E916C08D
|
||||
:10F6D000892F807591F0903539F4E0E0F0E089E011
|
||||
:10F6E0008093570094910AC0983539F4E3E0F0E034
|
||||
:10F6F00089E080935700949101C090E01A821B82A8
|
||||
:10F700008D818C831D829E831F8227E030E009C299
|
||||
:10F710001A8288E08B8381E48C8386E58D8382E581
|
||||
:10F720008E8389E48F8383E5888780E589878FE5E9
|
||||
:10F730008A8782E38B872BE030E0F3C18A818139AD
|
||||
:10F7400041F0823941F0803911F48FE005C080E04A
|
||||
:10F7500003C082E001C08AE01A828B8344C0772410
|
||||
:10F76000739482C08D81882311F48EE12CC0813086
|
||||
:10F7700011F081E028C088E926C01A82E1E0F0E0BB
|
||||
:10F7800089E08093570084918B831C8224E030E0D1
|
||||
:10F79000C8C18B81803589F48C81883039F4E2E0EE
|
||||
:10F7A000F0E089E08093570084910DC0E0E0F0E044
|
||||
:10F7B00089E080935700849106C0E3E0F0E089E09F
|
||||
:10F7C0008093570084911A82DFCF8D81836C99E0FA
|
||||
:10F7D000E1E0F0E0082E90935700E89507B600FCB2
|
||||
:10F7E000FDCF1A821B8223E030E09BC180EC8A832C
|
||||
:10F7F000CE5CDE4F188219821A821B82C253D1401E
|
||||
:10F800008EC18A8190E0A0E0B0E0582F44273327D2
|
||||
:10F8100022278B8190E0A0E0B0E0DC0199278827C7
|
||||
:10F82000282B392B4A2B5B2B8D8190E0A0E0B0E098
|
||||
:10F83000282B392B4A2B5B2B8C8190E0A0E0B0E089
|
||||
:10F84000BA2FA92F982F8827282B392B4A2B5B2BCF
|
||||
:10F85000220F331F441F551FC05EDE4F288339839C
|
||||
:10F860004A835B83C052D1401A8259C13A81C95C34
|
||||
:10F87000DE4F3883C753D140CA5CDE4F1882C6536F
|
||||
:10F88000D1408B81C82EDD24CA5CDE4F488159816E
|
||||
:10F89000C653D140C42AD52A933109F082C0CE5C28
|
||||
:10F8A000DE4F88819981AA81BB81C253D1408050AB
|
||||
:10F8B000904CA340B04030F583E0CE5CDE4FE88052
|
||||
:10F8C000F9800A811B81C253D140F70100935B008C
|
||||
:10F8D00080935700E89507B600FCFDCFCE5CDE4F65
|
||||
:10F8E000088119812A813B81C253D14000501F4FAA
|
||||
:10F8F0002F4F3F4FCE5CDE4F088319832A833B8313
|
||||
:10F90000C253D140C05EDE4F488159816A817B81FC
|
||||
:10F91000C052D140DE011B9631E08C9111962C91A2
|
||||
:10F9200011971296C75CDE4F2883C953D140C85C3B
|
||||
:10F93000DE4F1882C853D14090E0C85CDE4FE881AA
|
||||
:10F94000F981C853D1408E2B9F2B0C01FA01609393
|
||||
:10F950005B0030935700E89511244E5F5F4F6F4F67
|
||||
:10F960007F4F0EEFE02E0FEFF02ECE0CDF1CC114F8
|
||||
:10F97000D10499F685E0C05EDE4F088119812A81A5
|
||||
:10F980003B81C052D140F80120935B008093570027
|
||||
:10F99000E89507B600FCFDCF81E180935700E8951C
|
||||
:10F9A00035C0C05EDE4F88819981AA81BB81C0527B
|
||||
:10F9B000D140B695A795979587957C018601ABE0D8
|
||||
:10F9C000AA2EB12CAC0EBD1E0BC0D5016D915D01F0
|
||||
:10F9D000C7010F947FFE0894E11CF11C01501040F8
|
||||
:10F9E0000115110591F7A60160E070E0440F551F65
|
||||
:10F9F000661F771FC05EDE4FE880F9800A811B8199
|
||||
:10FA0000C052D1404E0D5F1D601F711F1A82C05E33
|
||||
:10FA1000DE4F488359836A837B83C052D1407FC0C5
|
||||
:10FA2000FA80C55CDE4FF882CB53D140C65CDE4F16
|
||||
:10FA30001882CA53D1408B81C82EDD24C65CDE4FAC
|
||||
:10FA400008811981CA53D140C02AD12A1A828981DA
|
||||
:10FA5000BE016D5F7F4F843121F59601C05EDE4FA0
|
||||
:10FA6000E880F9800A811B81C052D1400BBFF701A9
|
||||
:10FA700087919691DB018C9311969C936E5F7F4FDB
|
||||
:10FA8000D801C7010296A11DB11DC05EDE4F88835B
|
||||
:10FA90009983AA83BB83C052D14022503040F1F6F3
|
||||
:10FAA00036C0C05EDE4F288139814A815B81C052F9
|
||||
:10FAB000D1400894C108D108760100E010E0089414
|
||||
:10FAC000C11CD11C0894E11CF11C011D111DE20E8A
|
||||
:10FAD000F31E041F151F21BDBB27A52F942F832FB5
|
||||
:10FAE00082BD2F5F3F4F4F4F5F4FF89A80B5DB01CC
|
||||
:10FAF0008D93BD012E153F054007510761F7C05E8C
|
||||
:10FB0000DE4F288339834A835B83C052D1409601FC
|
||||
:10FB10002D5F3F4FFB01108204C080EC8A8322E0FE
|
||||
:10FB200030E08BE18093C6008091C00086FFFCCF5F
|
||||
:10FB30008091C00080648093C000C15DDE4FF88179
|
||||
:10FB4000CF52D140F093C6008091C00086FFFCCF19
|
||||
:10FB50008091C00080648093C000432F3093C60022
|
||||
:10FB60008091C00086FFFCCF8091C00080648093AC
|
||||
:10FB7000C000922F2093C6008091C00086FFFCCF6A
|
||||
:10FB80008091C00080648093C0008EE08093C600A6
|
||||
:10FB90008091C00086FFFCCF8091C000806480937C
|
||||
:10FBA000C00065E1C15DDE4FE880CF52D1406E25D7
|
||||
:10FBB00069276427FE01319610C090819093C6009A
|
||||
:10FBC0008091C00086FFFCCF31968091C000806498
|
||||
:10FBD0008093C0006927215030402115310569F715
|
||||
:10FBE0006093C6008091C00086FFFCCF8091C0006A
|
||||
:10FBF00080648093C00085B1805885B9772081F4F6
|
||||
:10FC0000C15DDE4F0881CF52D1400F5FC15DDE4F35
|
||||
:10FC10000883CF52D14090E0A0E0B0E00D941AF4F8
|
||||
:10FC200027982F9880E090E020ED37E0F901319798
|
||||
:10FC3000F1F7019684369105C9F700008091C00064
|
||||
:10FC40008D7F8093C00081E180935700E895EE2777
|
||||
:10FC5000FF270994FFCF90E00D941AF497FB092E2B
|
||||
:10FC600007260AD077FD04D02ED006D000201AF443
|
||||
:10FC7000709561957F4F0895F6F7909581959F4F08
|
||||
:10FC80000895A1E21A2EAA1BBB1BFD010DC0AA1FDD
|
||||
:10FC9000BB1FEE1FFF1FA217B307E407F50720F0F5
|
||||
:10FCA000A21BB30BE40BF50B661F771F881F991F70
|
||||
:10FCB0001A9469F760957095809590959B01AC01B9
|
||||
:10FCC000BD01CF010895AA1BBB1B51E107C0AA1FAC
|
||||
:10FCD000BB1FA617B70710F0A61BB70B881F991FED
|
||||
:10FCE0005A95A9F780959095BC01CD010895F99991
|
||||
:10FCF000FECF92BD81BDF89A992780B50895262F31
|
||||
:10FD0000F999FECF1FBA92BD81BD20BD0FB6F89400
|
||||
:0EFD1000FA9AF99A0FBE01960895F894FFCF63
|
||||
:10E0000095C00000B9C00000B7C00000B5C0000056
|
||||
:10E01000B3C00000B1C00000AFC00000ADC0000040
|
||||
:10E02000ABC00000A9C00000A7C00000A5C0000050
|
||||
:10E03000A3C00000A1C000009FC000009DC0000060
|
||||
:10E040009BC0000099C0000097C0000095C0000070
|
||||
:10E0500093C0000091C000008FC000008DC0000080
|
||||
:10E060008BC0000089C0000087C0000085C0000090
|
||||
:10E0700083C0000081C000007FC000007DC00000A0
|
||||
:10E080007BC0000079C0000077C0000075C00000B0
|
||||
:10E0900073C0000071C000006FC000006DC00000C0
|
||||
:10E0A0006BC0000069C0000067C0000065C00000D0
|
||||
:10E0B00063C0000061C000005FC000005DC00000E0
|
||||
:10E0C0005BC0000059C0000057C0000055C00000F0
|
||||
:10E0D00053C0000051C000004FC000004DC0000000
|
||||
:10E0E0004BC000006BF171F179F180F184F18CF19A
|
||||
:10E0F0009DF1DDF1B0F1F4F11EF31EF33EF21EF3DB
|
||||
:10E100001EF31EF31EF31EF31EF31EF31EF31EF387
|
||||
:10E11000B0F104F235F24BF2C5F24BF2C5F21EF348
|
||||
:10E1200020F21EF313F208F21EF3B2F111241FBE07
|
||||
:10E13000CFEFD1E2DEBFCDBF01E00CBF12E0A0E027
|
||||
:10E14000B2E0EAE7F7EE03E00BBF02C007900D92E2
|
||||
:10E15000A430B107D9F722E0A4E0B2E001C01D92DB
|
||||
:10E16000A630B207E1F715D006C301E20EBF0FEFEC
|
||||
:10E170000DBF11241FBE0DC043CF8093C6008091F8
|
||||
:10E18000C00086FFFCCF8091C00080648093C000F7
|
||||
:10E190000895CF93DF93CDB7DEB7C052D1400FB60D
|
||||
:10E1A000F894DEBF0FBECDBF01E20EBF0FEF0DBF73
|
||||
:10E1B00094B7F894A89514BE80916000886180930C
|
||||
:10E1C000600010926000789493FF05C0E091040213
|
||||
:10E1D000F091050219958091C00082608093C00083
|
||||
:10E1E00080E18093C40088E18093C100000000E0DA
|
||||
:10E1F00010E0C12CD12C760197EC892E9BE1992E51
|
||||
:10E20000A12CB12C24E0722E8091C00087FD25C086
|
||||
:10E210000115110511F525E02A95F1F700003FEFF2
|
||||
:10E22000C31AD30AE30AF30A91E080E041E2C4167C
|
||||
:10E230004EE4D406E104F10408F490E0092F182F0D
|
||||
:10E24000C701B601A501940157D2672B682B692B32
|
||||
:10E25000D9F684B3872584BBD7CF0F5F1F4F01301A
|
||||
:10E26000110509F032C2C25EDE4F1882CE51D14094
|
||||
:10E27000D12C212C312C812C912C5401412C512C4E
|
||||
:10E28000320140E050E020E001301105B1F081E0C2
|
||||
:10E2900092E1AAE7B0E03091C00037FD0EC00197CF
|
||||
:10E2A000A109B109C1F7ABBFFC0187919691019615
|
||||
:10E2B00071F3EE27FF270994EACF9091C600E22E72
|
||||
:10E2C000F12CF7E0EF16F104D8F5F7018827EE58A6
|
||||
:10E2D000FF408E4F33C29B3109F405C200E010E0CD
|
||||
:10E2E000D3CFD926C25EDE4F9883CE51D14022E0F3
|
||||
:10E2F000F5CF492F50E0542F4427D92623E0EECF05
|
||||
:10E30000492BD92624E0EACF9E3009F0F0C1D92666
|
||||
:10E31000212C312C25E0E2CFB1016F5F7F4FE1E08E
|
||||
:10E32000F0E0EC0FFD1FE20DF31D9083D926461798
|
||||
:10E33000570709F4DEC11B01D1CF9D11D8C102C01E
|
||||
:10E34000273061F62981822F90E0FC013197ED3171
|
||||
:10E35000F10508F073C18827E758FF408E4FEEC1E2
|
||||
:10E36000C12C54C09D81903339F48F818823B1F042
|
||||
:10E370008130B1F488E917C0892F807599F0903504
|
||||
:10E3800021F489E0E0E0F0E005C0983559F4E3E0DD
|
||||
:10E39000F0E089E080935700849105C08EE103C0CE
|
||||
:10E3A00081E001C080E01A821B829C831D828E83E3
|
||||
:10E3B0001F82C12C07E010E046C11A8288E08B83DF
|
||||
:10E3C00081E48C8386E58D8382E58E8389E48F8367
|
||||
:10E3D00083E5888780E589878FE58A8782E38B8755
|
||||
:10E3E000C12C0BE010E02FC1EA81E059E33028F4A2
|
||||
:10E3F000F0E0E050FE4F808101C080E01A828B8304
|
||||
:10E40000C12C03E010E01FC1CC24C3941A8219C1AF
|
||||
:10E410008D81882321F0813021F488E924C08EE1A8
|
||||
:10E4200022C081E020C01A82E1E0F0E089E0809320
|
||||
:10E43000570084918B831C82C12C04E010E003C13F
|
||||
:10E440008B81803551F48C81883019F4E2E0F0E062
|
||||
:10E4500006C089E0E0E0F0E003C0E3E0F0E089E03E
|
||||
:10E460008093570084911A82E5CF80EC8A83C12C77
|
||||
:10E4700002E010E0812C912C5401E5C06A817B817F
|
||||
:10E480008C819D8163D12B013C01440C551C661C81
|
||||
:10E49000771C1A82D5C0EA80FB80FE24EF24FE247C
|
||||
:10E4A000233109F03CC0811440EC940643E0A406FB
|
||||
:10E4B000B10478F423E0F401A0925B0020935700AC
|
||||
:10E4C000E89507B600FCFDCF3FEF931AA30AB30A05
|
||||
:10E4D000EACF93018201DE011B968D919D9141E06F
|
||||
:10E4E0000C01F80120935B0040935700E89511243C
|
||||
:10E4F0000E5F1F4F2F4F3F4F82E0E81AF10869F778
|
||||
:10E5000095E0F20160925B0090935700E89507B6A2
|
||||
:10E5100000FCFDCF81E180935700E89532C0D30124
|
||||
:10E52000C201B695A795979587956C01FE013B961C
|
||||
:10E53000C15EDE4FF983E883CF51D14000E010E0A7
|
||||
:10E540000E151F05A1F0C15EDE4FE881F981CF51A4
|
||||
:10E55000D1406191C15EDE4FF983E883CF51D14054
|
||||
:10E56000C8018C0D9D1DF9D00F5F1F4FE9CF20E032
|
||||
:10E5700030E0000F111F221F331F040D151D261D33
|
||||
:10E58000371D1A82280139015BC08A819B81982737
|
||||
:10E59000892798278C010D5F1F4F1A82243101F5BE
|
||||
:10E5A0008114F0EC9F06F3E0AF06B10408F446C016
|
||||
:10E5B000DE0111966BBEF2012791369112962C93D3
|
||||
:10E5C0001297FD01349613963C93139722E0420E66
|
||||
:10E5D000511C611C711C02971296009759F72BC0B1
|
||||
:10E5E000FE0131969F01280F391FB301A20141BDE1
|
||||
:10E5F000C52ED62EE72EFF24C2BC4F5F5F4F6F4F54
|
||||
:10E600007F4FF89AA0B5A28331962E173F0779F76E
|
||||
:10E61000AC014150510960E070E04F5F5F4F6F4FB8
|
||||
:10E620007F4F440E551E661E771EE3E0F0E0EC0FB0
|
||||
:10E63000FD1FE80FF91F1082C12C05C080EC8A83F2
|
||||
:10E64000C12C02E010E08BE198DDC25EDE4F8881D4
|
||||
:10E65000CE51D14092DD812F90DD802F8EDD85E17E
|
||||
:10E66000C25EDE4FD880CE51D140D826D0268EE073
|
||||
:10E6700084DDD126CE0101967C01080F191F0E15ED
|
||||
:10E680001F0589F0F70121917F01C15EDE4F2883CC
|
||||
:10E69000CF51D140822F71DDC15EDE4F3881CF5125
|
||||
:10E6A000D140D326ECCF8D2D68DDC25EDE4F488190
|
||||
:10E6B000CE51D1404F5FC25EDE4F4883CE51D14034
|
||||
:10E6C00000E010E0CC2009F4DCCD00008091C00017
|
||||
:10E6D0008D7F8093C00081E180935700E895EE27FD
|
||||
:10E6E000FF270994FFCF8BE1D82E21E0F7CD20E062
|
||||
:10E6F000F5CD1A0126E0F2CDA1E21A2EAA1BBB1B12
|
||||
:10E70000FD010DC0AA1FBB1FEE1FFF1FA217B307FD
|
||||
:10E71000E407F50720F0A21BB30BE40BF50B661F13
|
||||
:10E72000771F881F991F1A9469F7609570958095D7
|
||||
:10E7300090959B01AC01BD01CF010895EE0FFF1F25
|
||||
:10E74000881F8BBF0790F691E02D199469279627B3
|
||||
:10E7500069277827872778270895262FF999FECFEC
|
||||
:10E760001FBA92BD81BD20BD0FB6F894FA9AF99AEE
|
||||
:0AE770000FBE01960895F894FFCF44
|
||||
:04E77A000F020A0080
|
||||
:040000033000E000E9
|
||||
:00000001FF
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,582 @@
|
||||
Archive member included to satisfy reference by file (symbol)
|
||||
|
||||
c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
stk500boot.o (__udivmodsi4)
|
||||
c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o (exit)
|
||||
c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
stk500boot.o (__tablejump2__)
|
||||
c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
stk500boot.o (__do_copy_data)
|
||||
c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
stk500boot.o (__do_clear_bss)
|
||||
c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
stk500boot.o (__bswapsi2)
|
||||
C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
stk500boot.o (eeprom_write_byte)
|
||||
|
||||
Discarded input sections
|
||||
|
||||
.data 0x00000000 0x0 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
.bss 0x00000000 0x0 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
.text 0x00000000 0x0 stk500boot.o
|
||||
.data 0x00000000 0x0 stk500boot.o
|
||||
.bss 0x00000000 0x0 stk500boot.o
|
||||
.text.delay_ms
|
||||
0x00000000 0x1e stk500boot.o
|
||||
.text 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.data 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.bss 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.text.libgcc.mul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.text.libgcc 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.text.libgcc.prologue
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.text.libgcc.builtins
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.text.libgcc.fmul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.text.libgcc.fixed
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
.text 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.data 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.bss 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text.libgcc.mul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text.libgcc.div
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text.libgcc 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text.libgcc.prologue
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text.libgcc.builtins
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text.libgcc.fmul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text.libgcc.fixed
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
.text 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.data 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.bss 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.text.libgcc.mul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.text.libgcc.div
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.text.libgcc.prologue
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.text.libgcc.builtins
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.text.libgcc.fmul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.text.libgcc.fixed
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
.text 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.data 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.bss 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text.libgcc.mul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text.libgcc.div
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text.libgcc 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text.libgcc.prologue
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text.libgcc.builtins
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text.libgcc.fmul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text.libgcc.fixed
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
.text 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.data 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.bss 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text.libgcc.mul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text.libgcc.div
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text.libgcc 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text.libgcc.prologue
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text.libgcc.builtins
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text.libgcc.fmul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text.libgcc.fixed
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
.text 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.data 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.bss 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.text.libgcc.mul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.text.libgcc.div
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.text.libgcc 0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.text.libgcc.prologue
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.text.libgcc.fmul
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.text.libgcc.fixed
|
||||
0x00000000 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
.text 0x00000000 0x0 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
.data 0x00000000 0x0 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
.bss 0x00000000 0x0 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
|
||||
Memory Configuration
|
||||
|
||||
Name Origin Length Attributes
|
||||
text 0x00000000 0x00040000 xr
|
||||
data 0x00800200 0x00002000 rw !x
|
||||
eeprom 0x00810000 0x00001000 rw !x
|
||||
fuse 0x00820000 0x00000003 rw !x
|
||||
lock 0x00830000 0x00000400 rw !x
|
||||
signature 0x00840000 0x00000400 rw !x
|
||||
user_signatures 0x00850000 0x00000400 rw !x
|
||||
*default* 0x00000000 0xffffffff
|
||||
|
||||
Linker script and memory map
|
||||
|
||||
Address of section .data set to 0x800200
|
||||
LOAD C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
LOAD stk500boot.o
|
||||
START GROUP
|
||||
LOAD c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/../../../../avr/lib/avr6\libm.a
|
||||
END GROUP
|
||||
Address of section .text set to 0x3e000
|
||||
START GROUP
|
||||
LOAD c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a
|
||||
LOAD c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/../../../../avr/lib/avr6\libm.a
|
||||
LOAD c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/../../../../avr/lib/avr6\libc.a
|
||||
LOAD C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a
|
||||
END GROUP
|
||||
0x00000000 __TEXT_REGION_ORIGIN__ = DEFINED (__TEXT_REGION_ORIGIN__)?__TEXT_REGION_ORIGIN__:0x0
|
||||
[0x00800200] __DATA_REGION_ORIGIN__ = DEFINED (__DATA_REGION_ORIGIN__)?__DATA_REGION_ORIGIN__:0x800200
|
||||
[0x00040000] __TEXT_REGION_LENGTH__ = DEFINED (__TEXT_REGION_LENGTH__)?__TEXT_REGION_LENGTH__:0x100000
|
||||
[0x00002000] __DATA_REGION_LENGTH__ = DEFINED (__DATA_REGION_LENGTH__)?__DATA_REGION_LENGTH__:0xfe00
|
||||
[0x00001000] __EEPROM_REGION_LENGTH__ = DEFINED (__EEPROM_REGION_LENGTH__)?__EEPROM_REGION_LENGTH__:0x10000
|
||||
[0x00000003] __FUSE_REGION_LENGTH__ = DEFINED (__FUSE_REGION_LENGTH__)?__FUSE_REGION_LENGTH__:0x400
|
||||
0x00000400 __LOCK_REGION_LENGTH__ = DEFINED (__LOCK_REGION_LENGTH__)?__LOCK_REGION_LENGTH__:0x400
|
||||
0x00000400 __SIGNATURE_REGION_LENGTH__ = DEFINED (__SIGNATURE_REGION_LENGTH__)?__SIGNATURE_REGION_LENGTH__:0x400
|
||||
0x00000400 __USER_SIGNATURE_REGION_LENGTH__ = DEFINED (__USER_SIGNATURE_REGION_LENGTH__)?__USER_SIGNATURE_REGION_LENGTH__:0x400
|
||||
|
||||
.hash
|
||||
*(.hash)
|
||||
|
||||
.dynsym
|
||||
*(.dynsym)
|
||||
|
||||
.dynstr
|
||||
*(.dynstr)
|
||||
|
||||
.gnu.version
|
||||
*(.gnu.version)
|
||||
|
||||
.gnu.version_d
|
||||
*(.gnu.version_d)
|
||||
|
||||
.gnu.version_r
|
||||
*(.gnu.version_r)
|
||||
|
||||
.rel.init
|
||||
*(.rel.init)
|
||||
|
||||
.rela.init
|
||||
*(.rela.init)
|
||||
|
||||
.rel.text
|
||||
*(.rel.text)
|
||||
*(.rel.text.*)
|
||||
*(.rel.gnu.linkonce.t*)
|
||||
|
||||
.rela.text
|
||||
*(.rela.text)
|
||||
*(.rela.text.*)
|
||||
*(.rela.gnu.linkonce.t*)
|
||||
|
||||
.rel.fini
|
||||
*(.rel.fini)
|
||||
|
||||
.rela.fini
|
||||
*(.rela.fini)
|
||||
|
||||
.rel.rodata
|
||||
*(.rel.rodata)
|
||||
*(.rel.rodata.*)
|
||||
*(.rel.gnu.linkonce.r*)
|
||||
|
||||
.rela.rodata
|
||||
*(.rela.rodata)
|
||||
*(.rela.rodata.*)
|
||||
*(.rela.gnu.linkonce.r*)
|
||||
|
||||
.rel.data
|
||||
*(.rel.data)
|
||||
*(.rel.data.*)
|
||||
*(.rel.gnu.linkonce.d*)
|
||||
|
||||
.rela.data
|
||||
*(.rela.data)
|
||||
*(.rela.data.*)
|
||||
*(.rela.gnu.linkonce.d*)
|
||||
|
||||
.rel.ctors
|
||||
*(.rel.ctors)
|
||||
|
||||
.rela.ctors
|
||||
*(.rela.ctors)
|
||||
|
||||
.rel.dtors
|
||||
*(.rel.dtors)
|
||||
|
||||
.rela.dtors
|
||||
*(.rela.dtors)
|
||||
|
||||
.rel.got
|
||||
*(.rel.got)
|
||||
|
||||
.rela.got
|
||||
*(.rela.got)
|
||||
|
||||
.rel.bss
|
||||
*(.rel.bss)
|
||||
|
||||
.rela.bss
|
||||
*(.rela.bss)
|
||||
|
||||
.rel.plt
|
||||
*(.rel.plt)
|
||||
|
||||
.rela.plt
|
||||
*(.rela.plt)
|
||||
|
||||
.text 0x0003e000 0x77a
|
||||
*(.vectors)
|
||||
.vectors 0x0003e000 0xe4 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
0x0003e000 __vector_default
|
||||
0x0003e000 __vectors
|
||||
*(.vectors)
|
||||
*(.progmem.gcc*)
|
||||
.progmem.gcc_sw_table.main
|
||||
0x0003e0e4 0x48 stk500boot.o
|
||||
0x0003e12c . = ALIGN (0x2)
|
||||
0x0003e12c __trampolines_start = .
|
||||
*(.trampolines)
|
||||
.trampolines 0x0003e12c 0x0 linker stubs
|
||||
*(.trampolines*)
|
||||
0x0003e12c __trampolines_end = .
|
||||
*libprintf_flt.a:*(.progmem.data)
|
||||
*libc.a:*(.progmem.data)
|
||||
*(.progmem*)
|
||||
0x0003e12c . = ALIGN (0x2)
|
||||
*(.jumptables)
|
||||
*(.jumptables*)
|
||||
*(.lowtext)
|
||||
*(.lowtext*)
|
||||
0x0003e12c __ctors_start = .
|
||||
*(.ctors)
|
||||
0x0003e12c __ctors_end = .
|
||||
0x0003e12c __dtors_start = .
|
||||
*(.dtors)
|
||||
0x0003e12c __dtors_end = .
|
||||
SORT(*)(.ctors)
|
||||
SORT(*)(.dtors)
|
||||
*(.init0)
|
||||
.init0 0x0003e12c 0x0 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
0x0003e12c __init
|
||||
*(.init0)
|
||||
*(.init1)
|
||||
*(.init1)
|
||||
*(.init2)
|
||||
.init2 0x0003e12c 0x10 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
*(.init2)
|
||||
*(.init3)
|
||||
*(.init3)
|
||||
*(.init4)
|
||||
.init4 0x0003e13c 0x1a c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_copy_data.o)
|
||||
0x0003e13c __do_copy_data
|
||||
.init4 0x0003e156 0x10 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_clear_bss.o)
|
||||
0x0003e156 __do_clear_bss
|
||||
*(.init4)
|
||||
*(.init5)
|
||||
*(.init5)
|
||||
*(.init6)
|
||||
*(.init6)
|
||||
*(.init7)
|
||||
*(.init7)
|
||||
*(.init8)
|
||||
*(.init8)
|
||||
*(.init9)
|
||||
.init9 0x0003e166 0x4 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
.init9 0x0003e16a 0xe stk500boot.o
|
||||
0x0003e16a __jumpMain
|
||||
*(.init9)
|
||||
*(.text)
|
||||
.text 0x0003e178 0x2 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
0x0003e178 __vector_38
|
||||
0x0003e178 __vector_22
|
||||
0x0003e178 __vector_28
|
||||
0x0003e178 __vector_1
|
||||
0x0003e178 __vector_32
|
||||
0x0003e178 __vector_34
|
||||
0x0003e178 __vector_24
|
||||
0x0003e178 __vector_12
|
||||
0x0003e178 __vector_55
|
||||
0x0003e178 __vector_46
|
||||
0x0003e178 __bad_interrupt
|
||||
0x0003e178 __vector_6
|
||||
0x0003e178 __vector_31
|
||||
0x0003e178 __vector_35
|
||||
0x0003e178 __vector_39
|
||||
0x0003e178 __vector_3
|
||||
0x0003e178 __vector_23
|
||||
0x0003e178 __vector_30
|
||||
0x0003e178 __vector_45
|
||||
0x0003e178 __vector_25
|
||||
0x0003e178 __vector_11
|
||||
0x0003e178 __vector_54
|
||||
0x0003e178 __vector_13
|
||||
0x0003e178 __vector_17
|
||||
0x0003e178 __vector_19
|
||||
0x0003e178 __vector_56
|
||||
0x0003e178 __vector_7
|
||||
0x0003e178 __vector_49
|
||||
0x0003e178 __vector_41
|
||||
0x0003e178 __vector_43
|
||||
0x0003e178 __vector_27
|
||||
0x0003e178 __vector_5
|
||||
0x0003e178 __vector_33
|
||||
0x0003e178 __vector_47
|
||||
0x0003e178 __vector_52
|
||||
0x0003e178 __vector_37
|
||||
0x0003e178 __vector_4
|
||||
0x0003e178 __vector_44
|
||||
0x0003e178 __vector_51
|
||||
0x0003e178 __vector_9
|
||||
0x0003e178 __vector_2
|
||||
0x0003e178 __vector_21
|
||||
0x0003e178 __vector_15
|
||||
0x0003e178 __vector_36
|
||||
0x0003e178 __vector_29
|
||||
0x0003e178 __vector_40
|
||||
0x0003e178 __vector_8
|
||||
0x0003e178 __vector_26
|
||||
0x0003e178 __vector_48
|
||||
0x0003e178 __vector_14
|
||||
0x0003e178 __vector_53
|
||||
0x0003e178 __vector_10
|
||||
0x0003e178 __vector_50
|
||||
0x0003e178 __vector_16
|
||||
0x0003e178 __vector_18
|
||||
0x0003e178 __vector_20
|
||||
0x0003e178 __vector_42
|
||||
0x0003e17a . = ALIGN (0x2)
|
||||
*(.text.*)
|
||||
.text.sendchar
|
||||
0x0003e17a 0x18 stk500boot.o
|
||||
.text.startup.main
|
||||
0x0003e192 0x566 stk500boot.o
|
||||
0x0003e192 main
|
||||
.text.libgcc.div
|
||||
0x0003e6f8 0x44 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_udivmodsi4.o)
|
||||
0x0003e6f8 __udivmodsi4
|
||||
.text.libgcc 0x0003e73c 0x10 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_tablejump2.o)
|
||||
0x0003e73c __tablejump2__
|
||||
.text.libgcc.builtins
|
||||
0x0003e74c 0xe c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_bswapsi2.o)
|
||||
0x0003e74c __bswapsi2
|
||||
.text.avr-libc
|
||||
0x0003e75a 0x1c C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
0x0003e75a eeprom_write_byte
|
||||
0x0003e75c eeprom_write_r18
|
||||
0x0003e776 . = ALIGN (0x2)
|
||||
*(.fini9)
|
||||
.fini9 0x0003e776 0x0 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
0x0003e776 _exit
|
||||
0x0003e776 exit
|
||||
*(.fini9)
|
||||
*(.fini8)
|
||||
*(.fini8)
|
||||
*(.fini7)
|
||||
*(.fini7)
|
||||
*(.fini6)
|
||||
*(.fini6)
|
||||
*(.fini5)
|
||||
*(.fini5)
|
||||
*(.fini4)
|
||||
*(.fini4)
|
||||
*(.fini3)
|
||||
*(.fini3)
|
||||
*(.fini2)
|
||||
*(.fini2)
|
||||
*(.fini1)
|
||||
*(.fini1)
|
||||
*(.fini0)
|
||||
.fini0 0x0003e776 0x4 c:/program files (x86)/atmel/studio/7.0/toolchain/avr8/avr8-gnu-toolchain/bin/../lib/gcc/avr/5.4.0/avr6\libgcc.a(_exit.o)
|
||||
*(.fini0)
|
||||
0x0003e77a _etext = .
|
||||
|
||||
.data 0x00800200 0x4 load address 0x0003e77a
|
||||
0x00800200 PROVIDE (__data_start, .)
|
||||
*(.data)
|
||||
*(.data*)
|
||||
*(.gnu.linkonce.d*)
|
||||
*(.rodata)
|
||||
*(.rodata*)
|
||||
.rodata.CSWTCH.27
|
||||
0x00800200 0x3 stk500boot.o
|
||||
*(.gnu.linkonce.r*)
|
||||
0x00800204 . = ALIGN (0x2)
|
||||
*fill* 0x00800203 0x1
|
||||
0x00800204 _edata = .
|
||||
0x00800204 PROVIDE (__data_end, .)
|
||||
|
||||
.bss 0x00800204 0x2
|
||||
0x00800204 PROVIDE (__bss_start, .)
|
||||
*(.bss)
|
||||
*(.bss*)
|
||||
.bss.app_start
|
||||
0x00800204 0x2 stk500boot.o
|
||||
0x00800204 app_start
|
||||
*(COMMON)
|
||||
0x00800206 PROVIDE (__bss_end, .)
|
||||
0x0003e77a __data_load_start = LOADADDR (.data)
|
||||
0x0003e77e __data_load_end = (__data_load_start + SIZEOF (.data))
|
||||
|
||||
.noinit 0x00800206 0x0
|
||||
[!provide] PROVIDE (__noinit_start, .)
|
||||
*(.noinit*)
|
||||
[!provide] PROVIDE (__noinit_end, .)
|
||||
0x00800206 _end = .
|
||||
[!provide] PROVIDE (__heap_start, .)
|
||||
|
||||
.eeprom 0x00810000 0x0
|
||||
*(.eeprom*)
|
||||
0x00810000 __eeprom_end = .
|
||||
|
||||
.fuse 0x00820000 0x3
|
||||
*(.fuse)
|
||||
.fuse 0x00820000 0x3 stk500boot.o
|
||||
0x00820000 __fuse
|
||||
*(.lfuse)
|
||||
*(.hfuse)
|
||||
*(.efuse)
|
||||
|
||||
.lock 0x00830000 0x1
|
||||
*(.lock*)
|
||||
.lock 0x00830000 0x1 stk500boot.o
|
||||
0x00830000 __lock
|
||||
|
||||
.signature
|
||||
*(.signature*)
|
||||
|
||||
.user_signatures
|
||||
*(.user_signatures*)
|
||||
|
||||
.stab
|
||||
*(.stab)
|
||||
|
||||
.stabstr
|
||||
*(.stabstr)
|
||||
|
||||
.stab.excl
|
||||
*(.stab.excl)
|
||||
|
||||
.stab.exclstr
|
||||
*(.stab.exclstr)
|
||||
|
||||
.stab.index
|
||||
*(.stab.index)
|
||||
|
||||
.stab.indexstr
|
||||
*(.stab.indexstr)
|
||||
|
||||
.comment 0x00000000 0x30
|
||||
*(.comment)
|
||||
.comment 0x00000000 0x30 stk500boot.o
|
||||
0x31 (size before relaxing)
|
||||
|
||||
.note.gnu.avr.deviceinfo
|
||||
0x00000000 0x40
|
||||
.note.gnu.avr.deviceinfo
|
||||
0x00000000 0x40 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
|
||||
.note.gnu.build-id
|
||||
*(.note.gnu.build-id)
|
||||
|
||||
.debug
|
||||
*(.debug)
|
||||
|
||||
.line
|
||||
*(.line)
|
||||
|
||||
.debug_srcinfo
|
||||
*(.debug_srcinfo)
|
||||
|
||||
.debug_sfnames
|
||||
*(.debug_sfnames)
|
||||
|
||||
.debug_aranges 0x00000000 0x58
|
||||
*(.debug_aranges)
|
||||
.debug_aranges
|
||||
0x00000000 0x38 stk500boot.o
|
||||
.debug_aranges
|
||||
0x00000038 0x20 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
|
||||
.debug_pubnames
|
||||
*(.debug_pubnames)
|
||||
|
||||
.debug_info 0x00000000 0x1367
|
||||
*(.debug_info .gnu.linkonce.wi.*)
|
||||
.debug_info 0x00000000 0xbbc C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
.debug_info 0x00000bbc 0x711 stk500boot.o
|
||||
.debug_info 0x000012cd 0x9a C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
|
||||
.debug_abbrev 0x00000000 0xdac
|
||||
*(.debug_abbrev)
|
||||
.debug_abbrev 0x00000000 0xb1a C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
.debug_abbrev 0x00000b1a 0x27e stk500boot.o
|
||||
.debug_abbrev 0x00000d98 0x14 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
|
||||
.debug_line 0x00000000 0x988
|
||||
*(.debug_line .debug_line.* .debug_line_end)
|
||||
.debug_line 0x00000000 0x1fa C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
.debug_line 0x000001fa 0x6f0 stk500boot.o
|
||||
.debug_line 0x000008ea 0x9e C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6\libatmega2560.a(eewr_byte.o)
|
||||
|
||||
.debug_frame 0x00000000 0x68
|
||||
*(.debug_frame)
|
||||
.debug_frame 0x00000000 0x68 stk500boot.o
|
||||
|
||||
.debug_str 0x00000000 0x6f2
|
||||
*(.debug_str)
|
||||
.debug_str 0x00000000 0x3e6 C:/Program Files (x86)/Atmel/Studio/7.0/Packs/Atmel/ATmega_DFP/1.7.374/gcc/dev/atmega2560/avr6/crtatmega2560.o
|
||||
.debug_str 0x000003e6 0x30c stk500boot.o
|
||||
0x356 (size before relaxing)
|
||||
|
||||
.debug_loc 0x00000000 0xaa4
|
||||
*(.debug_loc)
|
||||
.debug_loc 0x00000000 0xaa4 stk500boot.o
|
||||
|
||||
.debug_macinfo
|
||||
*(.debug_macinfo)
|
||||
|
||||
.debug_weaknames
|
||||
*(.debug_weaknames)
|
||||
|
||||
.debug_funcnames
|
||||
*(.debug_funcnames)
|
||||
|
||||
.debug_typenames
|
||||
*(.debug_typenames)
|
||||
|
||||
.debug_varnames
|
||||
*(.debug_varnames)
|
||||
|
||||
.debug_pubtypes
|
||||
*(.debug_pubtypes)
|
||||
|
||||
.debug_ranges 0x00000000 0x58
|
||||
*(.debug_ranges)
|
||||
.debug_ranges 0x00000000 0x58 stk500boot.o
|
||||
|
||||
.debug_macro
|
||||
*(.debug_macro)
|
||||
OUTPUT(stk500boot_v2_mega2560.elf elf32-avr)
|
||||
LOAD linker stubs
|
@ -0,0 +1,123 @@
|
||||
S01E000073746B353030626F6F745F76325F6D656761323536302E737265639E
|
||||
S21403E00095C00000B9C00000B7C00000B5C000004E
|
||||
S21403E010B3C00000B1C00000AFC00000ADC0000038
|
||||
S21403E020ABC00000A9C00000A7C00000A5C0000048
|
||||
S21403E030A3C00000A1C000009FC000009DC0000058
|
||||
S21403E0409BC0000099C0000097C0000095C0000068
|
||||
S21403E05093C0000091C000008FC000008DC0000078
|
||||
S21403E0608BC0000089C0000087C0000085C0000088
|
||||
S21403E07083C0000081C000007FC000007DC0000098
|
||||
S21403E0807BC0000079C0000077C0000075C00000A8
|
||||
S21403E09073C0000071C000006FC000006DC00000B8
|
||||
S21403E0A06BC0000069C0000067C0000065C00000C8
|
||||
S21403E0B063C0000061C000005FC000005DC00000D8
|
||||
S21403E0C05BC0000059C0000057C0000055C00000E8
|
||||
S21403E0D053C0000051C000004FC000004DC00000F8
|
||||
S21403E0E04BC000006BF171F179F180F184F18CF192
|
||||
S21403E0F09DF1DDF1B0F1F4F11EF31EF33EF21EF3D3
|
||||
S21403E1001EF31EF31EF31EF31EF31EF31EF31EF37F
|
||||
S21403E110B0F104F235F24BF2C5F24BF2C5F21EF340
|
||||
S21403E12020F21EF313F208F21EF3B2F111241FBEFF
|
||||
S21403E130CFEFD1E2DEBFCDBF01E00CBF12E0A0E01F
|
||||
S21403E140B2E0EAE7F7EE03E00BBF02C007900D92DA
|
||||
S21403E150A430B107D9F722E0A4E0B2E001C01D92D3
|
||||
S21403E160A630B207E1F715D006C301E20EBF0FEFE4
|
||||
S21403E1700DBF11241FBE0DC043CF8093C6008091F0
|
||||
S21403E180C00086FFFCCF8091C00080648093C000EF
|
||||
S21403E1900895CF93DF93CDB7DEB7C052D1400FB605
|
||||
S21403E1A0F894DEBF0FBECDBF01E20EBF0FEF0DBF6B
|
||||
S21403E1B094B7F894A89514BE809160008861809304
|
||||
S21403E1C0600010926000789493FF05C0E09104020B
|
||||
S21403E1D0F091050219958091C00082608093C0007B
|
||||
S21403E1E080E18093C40088E18093C100000000E0D2
|
||||
S21403E1F010E0C12CD12C760197EC892E9BE1992E49
|
||||
S21403E200A12CB12C24E0722E8091C00087FD25C07E
|
||||
S21403E2100115110511F525E02A95F1F700003FEFEA
|
||||
S21403E220C31AD30AE30AF30A91E080E041E2C41674
|
||||
S21403E2304EE4D406E104F10408F490E0092F182F05
|
||||
S21403E240C701B601A501940157D2672B682B692B2A
|
||||
S21403E250D9F684B3872584BBD7CF0F5F1F4F013012
|
||||
S21403E260110509F032C2C25EDE4F1882CE51D1408C
|
||||
S21403E270D12C212C312C812C912C5401412C512C46
|
||||
S21403E280320140E050E020E001301105B1F081E0BA
|
||||
S21403E29092E1AAE7B0E03091C00037FD0EC00197C7
|
||||
S21403E2A0A109B109C1F7ABBFFC018791969101960D
|
||||
S21403E2B071F3EE27FF270994EACF9091C600E22E6A
|
||||
S21403E2C0F12CF7E0EF16F104D8F5F7018827EE589E
|
||||
S21403E2D0FF408E4F33C29B3109F405C200E010E0C5
|
||||
S21403E2E0D3CFD926C25EDE4F9883CE51D14022E0EB
|
||||
S21403E2F0F5CF492F50E0542F4427D92623E0EECFFD
|
||||
S21403E300492BD92624E0EACF9E3009F0F0C1D9265E
|
||||
S21403E310212C312C25E0E2CFB1016F5F7F4FE1E086
|
||||
S21403E320F0E0EC0FFD1FE20DF31D9083D926461790
|
||||
S21403E330570709F4DEC11B01D1CF9D11D8C102C016
|
||||
S21403E340273061F62981822F90E0FC013197ED3169
|
||||
S21403E350F10508F073C18827E758FF408E4FEEC1DA
|
||||
S21403E360C12C54C09D81903339F48F818823B1F03A
|
||||
S21403E3708130B1F488E917C0892F807599F09035FC
|
||||
S21403E38021F489E0E0E0F0E005C0983559F4E3E0D5
|
||||
S21403E390F0E089E080935700849105C08EE103C0C6
|
||||
S21403E3A081E001C080E01A821B829C831D828E83DB
|
||||
S21403E3B01F82C12C07E010E046C11A8288E08B83D7
|
||||
S21403E3C081E48C8386E58D8382E58E8389E48F835F
|
||||
S21403E3D083E5888780E589878FE58A8782E38B874D
|
||||
S21403E3E0C12C0BE010E02FC1EA81E059E33028F49A
|
||||
S21403E3F0F0E0E050FE4F808101C080E01A828B83FC
|
||||
S21403E400C12C03E010E01FC1CC24C3941A8219C1A7
|
||||
S21403E4108D81882321F0813021F488E924C08EE1A0
|
||||
S21403E42022C081E020C01A82E1E0F0E089E0809318
|
||||
S21403E430570084918B831C82C12C04E010E003C137
|
||||
S21403E4408B81803551F48C81883019F4E2E0F0E05A
|
||||
S21403E45006C089E0E0E0F0E003C0E3E0F0E089E036
|
||||
S21403E4608093570084911A82E5CF80EC8A83C12C6F
|
||||
S21403E47002E010E0812C912C5401E5C06A817B8177
|
||||
S21403E4808C819D8163D12B013C01440C551C661C79
|
||||
S21403E490771C1A82D5C0EA80FB80FE24EF24FE2474
|
||||
S21403E4A0233109F03CC0811440EC940643E0A406F3
|
||||
S21403E4B0B10478F423E0F401A0925B0020935700A4
|
||||
S21403E4C0E89507B600FCFDCF3FEF931AA30AB30AFD
|
||||
S21403E4D0EACF93018201DE011B968D919D9141E067
|
||||
S21403E4E00C01F80120935B0040935700E895112434
|
||||
S21403E4F00E5F1F4F2F4F3F4F82E0E81AF10869F770
|
||||
S21403E50095E0F20160925B0090935700E89507B69A
|
||||
S21403E51000FCFDCF81E180935700E89532C0D3011C
|
||||
S21403E520C201B695A795979587956C01FE013B9614
|
||||
S21403E530C15EDE4FF983E883CF51D14000E010E09F
|
||||
S21403E5400E151F05A1F0C15EDE4FE881F981CF519C
|
||||
S21403E550D1406191C15EDE4FF983E883CF51D1404C
|
||||
S21403E560C8018C0D9D1DF9D00F5F1F4FE9CF20E02A
|
||||
S21403E57030E0000F111F221F331F040D151D261D2B
|
||||
S21403E580371D1A82280139015BC08A819B8198272F
|
||||
S21403E590892798278C010D5F1F4F1A82243101F5B6
|
||||
S21403E5A08114F0EC9F06F3E0AF06B10408F446C00E
|
||||
S21403E5B0DE0111966BBEF2012791369112962C93CB
|
||||
S21403E5C01297FD01349613963C93139722E0420E5E
|
||||
S21403E5D0511C611C711C02971296009759F72BC0A9
|
||||
S21403E5E0FE0131969F01280F391FB301A20141BDD9
|
||||
S21403E5F0C52ED62EE72EFF24C2BC4F5F5F4F6F4F4C
|
||||
S21403E6007F4FF89AA0B5A28331962E173F0779F766
|
||||
S21403E610AC014150510960E070E04F5F5F4F6F4FB0
|
||||
S21403E6207F4F440E551E661E771EE3E0F0E0EC0FA8
|
||||
S21403E630FD1FE80FF91F1082C12C05C080EC8A83EA
|
||||
S21403E640C12C02E010E08BE198DDC25EDE4F8881CC
|
||||
S21403E650CE51D14092DD812F90DD802F8EDD85E176
|
||||
S21403E660C25EDE4FD880CE51D140D826D0268EE06B
|
||||
S21403E67084DDD126CE0101967C01080F191F0E15E5
|
||||
S21403E6801F0589F0F70121917F01C15EDE4F2883C4
|
||||
S21403E690CF51D140822F71DDC15EDE4F3881CF511D
|
||||
S21403E6A0D140D326ECCF8D2D68DDC25EDE4F488188
|
||||
S21403E6B0CE51D1404F5FC25EDE4F4883CE51D1402C
|
||||
S21403E6C000E010E0CC2009F4DCCD00008091C0000F
|
||||
S21403E6D08D7F8093C00081E180935700E895EE27F5
|
||||
S21403E6E0FF270994FFCF8BE1D82E21E0F7CD20E05A
|
||||
S21403E6F0F5CD1A0126E0F2CDA1E21A2EAA1BBB1B0A
|
||||
S21403E700FD010DC0AA1FBB1FEE1FFF1FA217B307F5
|
||||
S21403E710E407F50720F0A21BB30BE40BF50B661F0B
|
||||
S21403E720771F881F991F1A9469F7609570958095CF
|
||||
S21403E73090959B01AC01BD01CF010895EE0FFF1F1D
|
||||
S21403E740881F8BBF0790F691E02D199469279627AB
|
||||
S21403E75069277827872778270895262FF999FECFE4
|
||||
S21403E7601FBA92BD81BD20BD0FB6F894FA9AF99AE6
|
||||
S20E03E7700FBE01960895F894FFCF3C
|
||||
S20803E77A0F020A0078
|
||||
S80403E00018
|
@ -1,28 +0,0 @@
|
||||
:020000021000EC
|
||||
:10FE0000112424B614BE80E081D021FE49C18EE0C9
|
||||
:10FE10007DD0E0ECF0E0B0E1B483B2E0B083B8E1D3
|
||||
:10FE2000B18311E05FD0C82F823599F475D0E0E03E
|
||||
:10FE3000FEEF1BBF309719F48BB781508BBFFA953B
|
||||
:10FE4000A89583E091D03097A9F78BB78111F2CFB5
|
||||
:10FE50003FC08D7FF1F453D0D82FA0E0B2E042D064
|
||||
:10FE60008D93DA13FCCF58D0C1110FC0A0E0B2E0DF
|
||||
:10FE7000F999FECF1FBAF2BDE1BD8D9180BDFA9A0E
|
||||
:10FE8000F99A3196DA13F4CF23C0A0E0B2E04FD054
|
||||
:10FE90001FC0C33041F433D0C82F3ED087911BD050
|
||||
:10FEA000C150E1F715C0C13071F429D0C82F34D04A
|
||||
:10FEB000F999FECFF2BDE1BDF89A80B50CD031962C
|
||||
:10FEC000C150B1F705C0C13511F488E01FD024D06E
|
||||
:10FED0008AE801D0A7CF9091C00095FFFCCF809316
|
||||
:10FEE000C60008952F9A279A8091C00087FFFCCF03
|
||||
:10FEF00084FD15C0A8958091C6002F980895F2DF63
|
||||
:10FF0000E82FF0DFF82FEEDF8BBFECCF98E1909376
|
||||
:10FF10006000809360000895E5DF803219F088E08A
|
||||
:10FF2000F5DFFFCF80EAD7CF6BBFFA01DC016A2F84
|
||||
:10FF30009F01FE3F9BB781E09807D8F483E014D07F
|
||||
:10FF4000903039F4309629F48FEF8D938EEC8C93AA
|
||||
:10FF5000119781E00D901D9007D03296A613FACF2D
|
||||
:10FF6000F90185E001D081E187BFE89507B600FC83
|
||||
:06FF7000FDCF11240895ED
|
||||
:06FFFA00022895CF673FCD
|
||||
:040000031000FE00EB
|
||||
:00000001FF
|
@ -1,142 +0,0 @@
|
||||
|
||||
# Arduino AVR Core and platform.
|
||||
# ------------------------------
|
||||
#
|
||||
# For more info:
|
||||
# https://arduino.github.io/arduino-cli/latest/platform-specification/
|
||||
|
||||
name=Arduino AVR Boards
|
||||
version=1.8.6
|
||||
|
||||
# AVR compile variables
|
||||
# ---------------------
|
||||
|
||||
compiler.warning_flags=-w
|
||||
compiler.warning_flags.none=-w
|
||||
compiler.warning_flags.default=
|
||||
compiler.warning_flags.more=-Wall
|
||||
compiler.warning_flags.all=-Wall -Wextra
|
||||
|
||||
# Default "compiler.path" is correct, change only if you want to override the initial value
|
||||
compiler.path={runtime.tools.avr-gcc.path}/bin/
|
||||
compiler.c.cmd=avr-gcc
|
||||
compiler.c.flags=-c -g -Os {compiler.warning_flags} -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects
|
||||
compiler.c.elf.flags={compiler.warning_flags} -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections
|
||||
compiler.c.elf.cmd=avr-gcc
|
||||
compiler.S.flags=-c -g -x assembler-with-cpp -flto -MMD
|
||||
compiler.cpp.cmd=avr-g++
|
||||
compiler.cpp.flags=-c -g -Os {compiler.warning_flags} -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto
|
||||
compiler.ar.cmd=avr-gcc-ar
|
||||
compiler.ar.flags=rcs
|
||||
compiler.objcopy.cmd=avr-objcopy
|
||||
compiler.objcopy.eep.flags=-O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0
|
||||
compiler.elf2hex.flags=-O ihex -R .eeprom
|
||||
compiler.elf2hex.cmd=avr-objcopy
|
||||
compiler.ldflags=
|
||||
compiler.libraries.ldflags=
|
||||
compiler.size.cmd=avr-size
|
||||
|
||||
# This can be overridden in boards.txt
|
||||
build.extra_flags=
|
||||
|
||||
# These can be overridden in platform.local.txt
|
||||
compiler.c.extra_flags=
|
||||
compiler.c.elf.extra_flags=
|
||||
compiler.S.extra_flags=
|
||||
compiler.cpp.extra_flags=
|
||||
compiler.ar.extra_flags=
|
||||
compiler.objcopy.eep.extra_flags=
|
||||
compiler.elf2hex.extra_flags=
|
||||
|
||||
# AVR compile patterns
|
||||
# --------------------
|
||||
|
||||
## Compile c files
|
||||
recipe.c.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.c.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.c.extra_flags} {build.extra_flags} {includes} "{source_file}" -o "{object_file}"
|
||||
|
||||
## Compile c++ files
|
||||
recipe.cpp.o.pattern="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {includes} "{source_file}" -o "{object_file}"
|
||||
|
||||
## Compile S files
|
||||
recipe.S.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.S.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.S.extra_flags} {build.extra_flags} {includes} "{source_file}" -o "{object_file}"
|
||||
|
||||
## Create archives
|
||||
# archive_file_path is needed for backwards compatibility with IDE 1.6.5 or older, IDE 1.6.6 or newer overrides this value
|
||||
archive_file_path={build.path}/{archive_file}
|
||||
recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compiler.ar.extra_flags} "{archive_file_path}" "{object_file}"
|
||||
|
||||
## Combine gc-sections, archives, and objects
|
||||
recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mmcu={build.mcu} {compiler.c.elf.extra_flags} {compiler.ldflags} -o "{build.path}/{build.project_name}.elf" {object_files} {compiler.libraries.ldflags} "{build.path}/{archive_file}" "-L{build.path}" -lm
|
||||
|
||||
## Create output files (.eep and .hex)
|
||||
recipe.objcopy.eep.pattern="{compiler.path}{compiler.objcopy.cmd}" {compiler.objcopy.eep.flags} {compiler.objcopy.eep.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.eep"
|
||||
recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} {compiler.elf2hex.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.hex"
|
||||
|
||||
## Save hex
|
||||
recipe.output.tmp_file={build.project_name}.hex
|
||||
recipe.output.save_file={build.project_name}.{build.variant}.hex
|
||||
|
||||
## Compute size
|
||||
recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf"
|
||||
recipe.size.regex=^(?:\.text|\.data|\.bootloader)\s+([0-9]+).*
|
||||
recipe.size.regex.data=^(?:\.data|\.bss|\.noinit)\s+([0-9]+).*
|
||||
recipe.size.regex.eeprom=^(?:\.eeprom)\s+([0-9]+).*
|
||||
|
||||
## Preprocessor
|
||||
preproc.includes.flags=-w -x c++ -M -MG -MP
|
||||
recipe.preproc.includes="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} {preproc.includes.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {includes} "{source_file}"
|
||||
|
||||
preproc.macros.flags=-w -x c++ -E -CC
|
||||
recipe.preproc.macros="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} {preproc.macros.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {includes} "{source_file}" -o "{preprocessed_file_path}"
|
||||
|
||||
# Required discoveries and monitors
|
||||
# ---------------------------------
|
||||
pluggable_discovery.required.0=builtin:serial-discovery
|
||||
pluggable_discovery.required.1=builtin:mdns-discovery
|
||||
pluggable_monitor.required.serial=builtin:serial-monitor
|
||||
|
||||
# AVR Uploader/Programmers tools
|
||||
# ------------------------------
|
||||
|
||||
tools.avrdude.path={runtime.tools.avrdude.path}
|
||||
tools.avrdude.cmd.path={path}/bin/avrdude
|
||||
tools.avrdude.config.path={path}/etc/avrdude.conf
|
||||
|
||||
tools.avrdude.upload.params.verbose=-v
|
||||
tools.avrdude.upload.params.quiet=-q -q
|
||||
# tools.avrdude.upload.verify is needed for backwards compatibility with IDE 1.6.8 or older, IDE 1.6.9 or newer overrides this value
|
||||
tools.avrdude.upload.verify=
|
||||
tools.avrdude.upload.params.noverify=-V
|
||||
tools.avrdude.upload.pattern="{cmd.path}" "-C{config.path}" {upload.verbose} {upload.verify} -p{build.mcu} -c{upload.protocol} "-P{serial.port}" -b{upload.speed} -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"
|
||||
|
||||
tools.avrdude.program.params.verbose=-v
|
||||
tools.avrdude.program.params.quiet=-q -q
|
||||
# tools.avrdude.program.verify is needed for backwards compatibility with IDE 1.6.8 or older, IDE 1.6.9 or newer overrides this value
|
||||
tools.avrdude.program.verify=
|
||||
tools.avrdude.program.params.noverify=-V
|
||||
tools.avrdude.program.pattern="{cmd.path}" "-C{config.path}" {program.verbose} {program.verify} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{build.path}/{build.project_name}.hex:i"
|
||||
|
||||
tools.avrdude.erase.params.verbose=-v
|
||||
tools.avrdude.erase.params.quiet=-q -q
|
||||
tools.avrdude.erase.pattern="{cmd.path}" "-C{config.path}" {erase.verbose} -p{build.mcu} -c{protocol} {program.extra_params} -e -Ulock:w:{bootloader.unlock_bits}:m -Uefuse:w:{bootloader.extended_fuses}:m -Uhfuse:w:{bootloader.high_fuses}:m -Ulfuse:w:{bootloader.low_fuses}:m
|
||||
|
||||
tools.avrdude.bootloader.params.verbose=-v
|
||||
tools.avrdude.bootloader.params.quiet=-q -q
|
||||
tools.avrdude.bootloader.pattern="{cmd.path}" "-C{config.path}" {bootloader.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{runtime.platform.path}/bootloaders/{bootloader.file}:i" -Ulock:w:{bootloader.lock_bits}:m
|
||||
|
||||
tools.avrdude_remote.upload.pattern=/usr/bin/run-avrdude /tmp/sketch.hex {upload.verbose} -p{build.mcu}
|
||||
|
||||
# The following rule is deprecated by pluggable discovery.
|
||||
# We keep it to avoid breaking compatibility with the Arduino Java IDE.
|
||||
tools.avrdude.network_cmd={runtime.tools.arduinoOTA.path}/bin/arduinoOTA
|
||||
tools.avrdude.upload.network_pattern="{network_cmd}" -address {serial.port} -port {upload.network.port} -sketch "{build.path}/{build.project_name}.hex" -upload {upload.network.endpoint_upload} -sync {upload.network.endpoint_sync} -reset {upload.network.endpoint_reset} -sync_exp {upload.network.sync_return}
|
||||
|
||||
# arduino ota
|
||||
tools.arduino_ota.cmd={runtime.tools.arduinoOTA.path}/bin/arduinoOTA
|
||||
tools.arduino_ota.upload.pattern="{cmd}" -address {upload.port.address} -port {upload.port.properties.port} -sketch "{build.path}/{build.project_name}.hex" -upload {upload.port.properties.endpoint_upload} -sync {upload.port.properties.endpoint_sync} -reset {upload.port.properties.endpoint_reset} -sync_exp {upload.port.properties.sync_return}
|
||||
|
||||
# USB Default Flags
|
||||
# Default blank usb manufacturer will be filled in at compile time
|
||||
# - from numeric vendor ID, set to Unknown otherwise
|
||||
build.usb_manufacturer="Unknown"
|
||||
build.usb_flags=-DUSB_VID={build.vid} -DUSB_PID={build.pid} '-DUSB_MANUFACTURER={build.usb_manufacturer}' '-DUSB_PRODUCT={build.usb_product}'
|
Loading…
Reference in new issue