From 4709802879a03141ee982a576d3fc5a9b4b6e292 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Sat, 27 May 2023 12:07:14 +0000 Subject: [PATCH] Added makefile --- firmware/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 firmware/Makefile 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 +