Skip to content

Commit 7dd907c

Browse files
bors[bot]no111u3
andauthored
Merge #160
160: Update dev dependencies to actual version r=therealprof a=no111u3 I clean update developing dependencies to buildable state. Co-authored-by: Boris Vinogradov <[email protected]>
2 parents a5c0e3c + 1932021 commit 7dd907c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ version = "1.0.2"
2121
version = "0.1.1"
2222

2323
[dev-dependencies]
24-
stm32f30x = "0.6.0"
24+
stm32f3 = { version = "0.8", features = ["stm32f303", "rt"] }
2525
futures = "0.1.17"
2626

2727
[features]

src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -119,19 +119,19 @@
119119
//! Shown below is an implementation of some of the HAL traits for the [`stm32f30x`] crate. This
120120
//! single implementation will work for *any* microcontroller in the STM32F30x family.
121121
//!
122-
//! [`stm32f30x`]: https://crates.io/crates/stm32f30x
122+
//! [`stm32f3`]: https://crates.io/crates/stm32f3
123123
//!
124124
//! ```
125-
//! // crate: stm32f30x-hal
126-
//! // An implementation of the `embedded-hal` traits for STM32F30x microcontrollers
125+
//! // crate: stm32f3xx-hal
126+
//! // An implementation of the `embedded-hal` traits for STM32F3xx microcontrollers
127127
//!
128128
//! extern crate embedded_hal as hal;
129129
//! extern crate nb;
130130
//!
131131
//! // device crate
132-
//! extern crate stm32f30x;
132+
//! extern crate stm32f3;
133133
//!
134-
//! use stm32f30x::USART1;
134+
//! use stm32f3::stm32f303::USART1;
135135
//!
136136
//! /// A serial interface
137137
//! // NOTE generic over the USART peripheral

0 commit comments

Comments
 (0)