co2_sensing/justfile

13 lines
179 B
Makefile
Raw Normal View History

2024-07-04 22:27:31 +02:00
build:
cargo build
2024-07-06 17:05:12 +02:00
2024-07-21 21:42:01 +02:00
attach:
probe-rs attach --chip RP2040 target/thumbv6m-none-eabi/debug/co2_sensing
run:
cargo run
2024-07-06 17:05:12 +02:00
rerun:
probe-rs reset --chip RP2040
2024-07-21 21:42:01 +02:00
just attach