diff options
| -rw-r--r-- | rtic/macros/src/lib.rs | 4 | ||||
| -rw-r--r-- | rtic/src/lib.rs | 9 |
2 files changed, 4 insertions, 9 deletions
diff --git a/rtic/macros/src/lib.rs b/rtic/macros/src/lib.rs index 92d7cdd..3ac2701 100644 --- a/rtic/macros/src/lib.rs +++ b/rtic/macros/src/lib.rs @@ -58,8 +58,8 @@ pub fn app(args: TokenStream, input: TokenStream) -> TokenStream { out_dir = Path::new(&out_str); // Default build path, annotated below: - // $(pwd)/target/thumbv7em-none-eabihf/debug/build/cortex-m-rtic-<HASH>/out/ - // <project_dir>/<target-dir>/<TARGET>/debug/build/cortex-m-rtic-<HASH>/out/ + // $(pwd)/target/thumbv7em-none-eabihf/debug/build/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") // and use the parent() of this path diff --git a/rtic/src/lib.rs b/rtic/src/lib.rs index e8b8140..860e743 100644 --- a/rtic/src/lib.rs +++ b/rtic/src/lib.rs @@ -1,10 +1,5 @@ //! 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]. //! //! [here]: https://rtic.rs @@ -32,8 +27,8 @@ #![deny(rust_2018_idioms)] #![no_std] #![doc( - html_logo_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/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/rtic/master/book/en/src/RTIC.svg" )] //deny_warnings_placeholder_for_ci #![allow(clippy::inline_always)] |
