Skip to content

Commit edc1f35

Browse files
committed
Added a doc comment to the re-export of the svd2rust API
1 parent 3fd034d commit edc1f35

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/lib.rs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,54 +29,71 @@ pub use nb;
2929
pub use nb::block;
3030

3131
#[cfg(feature = "stm32f401")]
32+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f401 peripherals.
3233
pub use stm32f4::stm32f401 as pac;
3334

3435
#[cfg(feature = "stm32f405")]
36+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f405 peripherals.
3537
pub use stm32f4::stm32f405 as pac;
3638

3739
#[cfg(feature = "stm32f407")]
40+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f407 peripherals.
3841
pub use stm32f4::stm32f407 as pac;
3942

4043
#[cfg(feature = "stm32f410")]
44+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f410 peripherals.
4145
pub use stm32f4::stm32f410 as pac;
4246

4347
#[cfg(feature = "stm32f411")]
48+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f411 peripherals.
4449
pub use stm32f4::stm32f411 as pac;
4550

4651
#[cfg(feature = "stm32f412")]
52+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f412 peripherals.
4753
pub use stm32f4::stm32f412 as pac;
4854

4955
#[cfg(feature = "stm32f413")]
56+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f413 peripherals.
5057
pub use stm32f4::stm32f413 as pac;
5158

5259
#[cfg(feature = "stm32f415")]
60+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f405 peripherals.
5361
pub use stm32f4::stm32f405 as pac;
5462

5563
#[cfg(feature = "stm32f417")]
64+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f407 peripherals.
5665
pub use stm32f4::stm32f407 as pac;
5766

5867
#[cfg(feature = "stm32f423")]
68+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f413 peripherals.
5969
pub use stm32f4::stm32f413 as pac;
6070

6171
#[cfg(feature = "stm32f427")]
72+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f427 peripherals.
6273
pub use stm32f4::stm32f427 as pac;
6374

6475
#[cfg(feature = "stm32f429")]
76+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f429 peripherals.
6577
pub use stm32f4::stm32f429 as pac;
6678

6779
#[cfg(feature = "stm32f437")]
80+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f427 peripherals.
6881
pub use stm32f4::stm32f427 as pac;
6982

7083
#[cfg(feature = "stm32f439")]
84+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f429 peripherals.
7185
pub use stm32f4::stm32f429 as pac;
7286

7387
#[cfg(feature = "stm32f446")]
88+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f446 peripherals.
7489
pub use stm32f4::stm32f446 as pac;
7590

7691
#[cfg(feature = "stm32f469")]
92+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f469 peripherals.
7793
pub use stm32f4::stm32f469 as pac;
7894

7995
#[cfg(feature = "stm32f479")]
96+
/// Re-export of the [svd2rust](https://crates.io/crates/svd2rust) auto-generated API for the stm32f469 peripherals.
8097
pub use stm32f4::stm32f469 as pac;
8198

8299
// Enable use of interrupt macro

0 commit comments

Comments
 (0)