Skip to content

Commit

Permalink
microbit version 0.15.0 crates has been released
Browse files Browse the repository at this point in the history
A new version of the microbit crates has been released.

Cargo.toml
  *  microbit-v2        0.14.0 -> 0.15.0
     Which updated HAL crates to version 0.18.0
  *  microbit           0.14.0 -> 0.15.0

In connection with this I moved all the examples in the book out of book
text and made them project examples, and used an include statement, like
it's done in `my-solution`, which makes checking the examples faster,
and I also cought a couple of typos I made when I updated the text,
which rust-analyser didn't like.

The examples can be run manually with commands like:
`cargo embed --target thumbv7em-none-eabihf --features v2 --example
it-blinks-1`

Don't know if this messes with any automatic tests yet.
  • Loading branch information
nikgul committed Jun 20, 2024
1 parent 3089150 commit c6e0e7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions microbit/src/05-led-roulette/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ authors = ["Henrik Böving <hargonix@gmail.com>"]
edition = "2021"

[dependencies.microbit-v2]
version = "0.14.0"
version = "0.15.0"
optional = true

[dependencies.microbit]
version = "0.14.0"
version = "0.15.0"
optional = true

[dependencies]
Expand Down

0 comments on commit c6e0e7a

Please sign in to comment.