From 7224fce49e4fa8c0b966dcc8d4f9b1d12b02f66a Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 31 Jan 2026 17:35:51 +0530 Subject: Init commit with blink shit --- justfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 justfile (limited to 'justfile') diff --git a/justfile b/justfile new file mode 100644 index 0000000..749fde6 --- /dev/null +++ b/justfile @@ -0,0 +1,28 @@ +build: + pio run -e attiny84; + +check: + pio check --skip-packages + +upload: + pio run -e attiny84 -t upload + +clean: + pio run -t clean + +update: + pio pkg update + +monitor: + pio device monitor + +test: + pio test -e test + +format: + find include/ src/ -iname '*.h' -o -iname '*.cpp' | xargs clang-format -i + +devsetup: + # COMPILATIONDB_INCLUDE_TOOLCHAIN=true pio run -t compiledb + ./setup_compiledb.sh + -- cgit v1.3.1