Commit 82ed470a authored by A Sundbom's avatar A Sundbom
Browse files

Removes invalid documentation from example

1 merge request!45rtic update and examples purge
Pipeline #261 passed with stages
in 6 minutes and 37 seconds
Showing with 1 addition and 19 deletions
+1 -19
//! Using a device crate
//!
//! Crates generated using [`svd2rust`] are referred to as device crates. These crates provide an
//! API to access the peripherals of a device.
//!
//! [`svd2rust`]: https://crates.io/crates/svd2rust
//!
//! This example depends on the [`stm32f103xx`] crate so you'll have to add it to your Cargo.toml.
//!
//! [`stm32f103xx`]: https://crates.io/crates/stm32f103xx
//!
//! ```
//! $ edit Cargo.toml && tail $_
//! [dependencies.stm32f103xx]
//! features = ["rt"]
//! version = "0.10.0"
//! ```
//!
//! ---
//! Basic RTIC example
#![no_main]
#![no_std]
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment