scan keyboard

This commit is contained in:
Jeff Wang
2019-03-20 03:21:11 -04:00
parent f4f70853c1
commit 84b6888d7e
7 changed files with 119 additions and 8 deletions

View File

@ -1,9 +1,9 @@
SDCC ?= sdcc
STCCODESIZE ?= 4089
SDCCOPTS ?= --code-size $(STCCODESIZE) --xram-size 0 --data-loc 0x30
SDCCOPTS ?= --std-c99 --code-size $(STCCODESIZE) --xram-size 0 --data-loc 0x30
FLASHFILE ?= main.hex
SRC = src/lcd.c src/utils.c
SRC = src/lcd.c src/key.c src/utils.c
OBJ=$(patsubst src%.c,build%.rel, $(SRC))