diff --git a/Makefile b/Makefile index f674c9e..342630b 100644 --- a/Makefile +++ b/Makefile @@ -7,17 +7,17 @@ PORT ?= /dev/ttyACM0 all: notes lcd notes: - ${CC} ${CFLAGS} main.c - ${OBJCOPY} -j .text -j .data -O ihex a.out main.hex + ${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:main.hex:i + avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:notes.hex:i lcd: - ${CC} ${CFLAGS} main.c - ${OBJCOPY} -j .text -j .data -O ihex a.out main.hex + ${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:main.hex:i + avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:lcd.hex:i diff --git a/lcd.c b/lcd.c new file mode 100644 index 0000000..ccc9d52 --- /dev/null +++ b/lcd.c @@ -0,0 +1,7 @@ +#include + +int +main() +{ + +} diff --git a/main.c b/notes.c similarity index 100% rename from main.c rename to notes.c