avr_piano/Makefile

33 lines
688 B
Makefile
Raw Permalink Normal View History

CC = avr-gcc
2024-04-17 14:26:45 -04:00
CFLAGS = -O2 -Wall -Wextra -mmcu=atmega328p --param=min-pagesize=0
OBJCOPY = avr-objcopy
PORT ?= /dev/ttyACM0
2024-04-17 13:59:33 -04:00
all: notes lcd
notes:
2024-04-17 14:07:35 -04:00
${CC} ${CFLAGS} notes.c
${OBJCOPY} -j .text -j .data -O ihex a.out notes.hex
2024-04-17 13:59:33 -04:00
rm -f a.out
flash_notes: notes
2024-04-17 14:07:35 -04:00
avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:notes.hex:i
2024-04-17 13:59:33 -04:00
lcd:
2024-04-17 14:07:35 -04:00
${CC} ${CFLAGS} lcd.c
${OBJCOPY} -j .text -j .data -O ihex a.out lcd.hex
rm -f a.out
2024-04-21 17:31:01 -04:00
flash_lcd: lcd
2024-04-17 14:07:35 -04:00
avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:lcd.hex:i
serial_setup:
2024-04-21 17:31:01 -04:00
stty -F ${PORT} raw speed 9600 cs8 -cstopb -parenb
serial_open:
od -x --endian=big -w4 ${PORT}
2024-04-21 17:31:01 -04:00
serial_obsd:
cu -l ${PORT} -s 9600 | hexdump -C