Skip to content

Commit 0497a88

Browse files
committed
Update blinky_delay, README and crate version
1 parent 8b57030 commit 0497a88

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
99
name = "stm32g4xx-hal"
1010
readme = "README.md"
1111
repository = "https://github.com/stm32-rs/stm32g4xx-hal"
12-
version = "0.0.1"
12+
version = "0.0.2"
1313

1414
[dependencies]
1515
nb = "0.1.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Examples can be built and run using `cargo run`. It is necessary to provide any
3838
required features followed by the name of the chip.
3939

4040
```
41-
cargo run --example usb_serial --features stm32g473 --features usb_fs --release -- --chip STM32G473RETx
41+
cargo run --example blinky_delay --features stm32g474,log-rtt,defmt --release -- --chip STM32G474RBTx
4242
```
4343

4444
A list of chips supported by probe-rs can be found by running

examples/blinky_delay.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use hal::timer::Timer;
1212
use stm32g4xx_hal as hal;
1313

1414
use cortex_m_rt::entry;
15-
use log::info;
15+
use utils::logger::info;
1616

1717
#[macro_use]
1818
mod utils;

0 commit comments

Comments
 (0)