Skip to content

Commit

Permalink
Update blinky_delay, README and crate version
Browse files Browse the repository at this point in the history
  • Loading branch information
no111u3 committed Nov 28, 2023
1 parent 8b57030 commit 0497a88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "stm32g4xx-hal"
readme = "README.md"
repository = "https://github.com/stm32-rs/stm32g4xx-hal"
version = "0.0.1"
version = "0.0.2"

[dependencies]
nb = "0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Examples can be built and run using `cargo run`. It is necessary to provide any
required features followed by the name of the chip.

```
cargo run --example usb_serial --features stm32g473 --features usb_fs --release -- --chip STM32G473RETx
cargo run --example blinky_delay --features stm32g474,log-rtt,defmt --release -- --chip STM32G474RBTx
```

A list of chips supported by probe-rs can be found by running
Expand Down
2 changes: 1 addition & 1 deletion examples/blinky_delay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use hal::timer::Timer;
use stm32g4xx_hal as hal;

use cortex_m_rt::entry;
use log::info;
use utils::logger::info;

#[macro_use]
mod utils;
Expand Down

0 comments on commit 0497a88

Please sign in to comment.