co2_sensing/justfile

13 lines
179 B
Makefile
Raw Normal View History

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