📄 common.mk
字号:
# ======================================================================# Common Makefile for USBtiny applications## Macros to be defined before including this file:## USBTINY - the location of this directory# TARGET_ARCH - gcc -mmcu= option with AVR device type# OBJECTS - the objects in addition to the USBtiny objects# FLASH_CMD - command to upload main.hex to flash# FUSES_CMD - command to program the fuse bytes# STACK - maximum stack size (optional)# FLASH - flash size (optional)# SRAM - SRAM size (optional)# SCHEM - Postscript version of the schematic to be generated## Copyright 2006-2008 Dick Streefland## This is free software, licensed under the terms of the GNU General# Public License as published by the Free Software Foundation.# ======================================================================CC = avr-gccCFLAGS = -Os -g -Wall -I. -I$(USBTINY)ASFLAGS = -Os -g -Wall -I.LDFLAGS = -gMODULES = crc.o int.o usb.o $(OBJECTS)UTIL = $(USBTINY)/../utilmain.hex:all: main.hex $(SCHEM)clean: rm -f main.elf *.o tags *.sch~ gschem.logclobber: clean rm -f main.hex $(SCHEM)main.elf: $(MODULES) $(LINK.o) -o $@ $(MODULES)main.hex: main.elf $(UTIL)/check.py @python $(UTIL)/check.py main.elf $(STACK) $(FLASH) $(SRAM) avr-objcopy -j .text -j .data -O ihex main.elf main.hexdisasm: main.elf avr-objdump -S main.elfflash: main.hex $(FLASH_CMD)fuses: $(FUSES_CMD)crc.o: $(USBTINY)/crc.S $(USBTINY)/def.h usbtiny.h $(COMPILE.c) $(USBTINY)/crc.Sint.o: $(USBTINY)/int.S $(USBTINY)/def.h usbtiny.h $(COMPILE.c) $(USBTINY)/int.Susb.o: $(USBTINY)/usb.c $(USBTINY)/def.h $(USBTINY)/usb.h usbtiny.h $(COMPILE.c) $(USBTINY)/usb.cmain.o: $(USBTINY)/usb.h%.ps: %.sch $(UTIL)/sch2ps $(UTIL)/sch2ps $<
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -