diff --git a/firmware/Makefile b/firmware/Makefile new file mode 100644 index 0000000..21753a6 --- /dev/null +++ b/firmware/Makefile @@ -0,0 +1,19 @@ +# Uncomment lines below if you have problems with $PATH +#SHELL := /bin/bash +#PATH := /usr/local/bin:$(PATH) + +all: + pio run + +upload: + pio run --target upload + +clean: + pio run --target clean + +program: + pio run --target program + +db: + pio run -t compiledb +