Fix some references to cortex-m-rtic

This commit is contained in:
Henrik Tjäder 2023-01-28 20:26:50 +01:00
parent 2bd70baeb9
commit 58692a35e8
2 changed files with 4 additions and 9 deletions

View file

@ -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

View file

@ -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)]