aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: 749fde617f3316d432542cc3ac5618cade655206 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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