aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Tjäder <henrik@tjaders.com>2023-01-28 20:26:50 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:33:37 +0100
commit58692a35e87ddc8b8faca5bb262070d343ceb869 (patch)
tree0b92907b1f0474237825f691edebbff173c9eca2
parent2bd70baeb9362050196d431f2801551066e27e59 (diff)
Fix some references to cortex-m-rtic
-rw-r--r--rtic/macros/src/lib.rs4
-rw-r--r--rtic/src/lib.rs9
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)]