CC = avr-gcc CFLAGS = -O2 -Wall -Wextra -mmcu=atmega328p --param=min-pagesize=0 OBJCOPY = avr-objcopy PORT ?= /dev/ttyACM0 all: notes lcd notes: ${CC} ${CFLAGS} notes.c ${OBJCOPY} -j .text -j .data -O ihex a.out notes.hex rm -f a.out flash_notes: notes avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:notes.hex:i lcd: ${CC} ${CFLAGS} lcd.c ${OBJCOPY} -j .text -j .data -O ihex a.out lcd.hex rm -f a.out flash_lcd: notes avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:lcd.hex:i serial_setup: stty -F ${PORT} raw speed 115200 cs8 -cstopb -parenb serial_open: od -x --endian=big -w4 ${PORT}