mirror of
git://projects.qi-hardware.com/ben-blinkenlights.git
synced 2025-04-21 12:27:27 +03:00
uart/: great renaming to nxuart, including references in Makefile
This commit is contained in:
25
nxuart/fw/Makefile
Normal file
25
nxuart/fw/Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
CFLAGS = -g -Wall -Wshadow -Werror \
|
||||
-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
|
||||
|
||||
CHIP=atmega48
|
||||
|
||||
AVR_PREFIX = $(BIN_PATH) avr-
|
||||
CC = $(AVR_PREFIX)gcc
|
||||
OBJCOPY = $(AVR_PREFIX)objcopy
|
||||
#OBJDUMP = $(AVR_PREFIX)objdump
|
||||
|
||||
.PHONY: all upload prog
|
||||
|
||||
all: uart.bin
|
||||
|
||||
%.elf: %.c
|
||||
$(CC) -mmcu=$(CHIP) -Os -o $@ $<
|
||||
|
||||
%.bin: %.elf
|
||||
$(OBJCOPY) -j .text -j .data -O binary $< $@
|
||||
|
||||
upload: uart.bin
|
||||
scp uart.bin jlime:
|
||||
|
||||
prog:
|
||||
ssh jlime avrdude -p atmega48 -c nanonote_uart -e -U flash:w:uart.bin:r
|
||||
Reference in New Issue
Block a user