mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Fix some references to cortex-m-rtic
This commit is contained in:
parent
06867ca440
commit
cfd0914ef6
2 changed files with 4 additions and 9 deletions
|
@ -58,8 +58,8 @@ pub fn app(args: TokenStream, input: TokenStream) -> TokenStream {
|
||||||
out_dir = Path::new(&out_str);
|
out_dir = Path::new(&out_str);
|
||||||
|
|
||||||
// Default build path, annotated below:
|
// Default build path, annotated below:
|
||||||
// $(pwd)/target/thumbv7em-none-eabihf/debug/build/cortex-m-rtic-<HASH>/out/
|
// $(pwd)/target/thumbv7em-none-eabihf/debug/build/rtic-<HASH>/out/
|
||||||
// <project_dir>/<target-dir>/<TARGET>/debug/build/cortex-m-rtic-<HASH>/out/
|
// <project_dir>/<target-dir>/<TARGET>/debug/build/rtic-<HASH>/out/
|
||||||
//
|
//
|
||||||
// traverse up to first occurrence of TARGET, approximated with starts_with("thumbv")
|
// traverse up to first occurrence of TARGET, approximated with starts_with("thumbv")
|
||||||
// and use the parent() of this path
|
// and use the parent() of this path
|
||||||
|
|
|
@ -1,10 +1,5 @@
|
||||||
//! Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers.
|
//! Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers.
|
||||||
//!
|
//!
|
||||||
//! **IMPORTANT**: This crate is published as [`cortex-m-rtic`] on crates.io but the name of the
|
|
||||||
//! library is `rtic`.
|
|
||||||
//!
|
|
||||||
//! [`cortex-m-rtic`]: https://crates.io/crates/cortex-m-rtic
|
|
||||||
//!
|
|
||||||
//! The user level documentation can be found [here].
|
//! The user level documentation can be found [here].
|
||||||
//!
|
//!
|
||||||
//! [here]: https://rtic.rs
|
//! [here]: https://rtic.rs
|
||||||
|
@ -32,8 +27,8 @@
|
||||||
#![deny(rust_2018_idioms)]
|
#![deny(rust_2018_idioms)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![doc(
|
#![doc(
|
||||||
html_logo_url = "https://raw.githubusercontent.com/rtic-rs/cortex-m-rtic/master/book/en/src/RTIC.svg",
|
html_logo_url = "https://raw.githubusercontent.com/rtic-rs/rtic/master/book/en/src/RTIC.svg",
|
||||||
html_favicon_url = "https://raw.githubusercontent.com/rtic-rs/cortex-m-rtic/master/book/en/src/RTIC.svg"
|
html_favicon_url = "https://raw.githubusercontent.com/rtic-rs/rtic/master/book/en/src/RTIC.svg"
|
||||||
)]
|
)]
|
||||||
//deny_warnings_placeholder_for_ci
|
//deny_warnings_placeholder_for_ci
|
||||||
#![allow(clippy::inline_always)]
|
#![allow(clippy::inline_always)]
|
||||||
|
|
Loading…
Reference in a new issue