diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-11-25 09:14:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-25 09:14:28 +0000 |
| commit | 4de9eb673ae2f3d4ece52ff2047ed1f6792c0aff (patch) | |
| tree | 58248fadd494e30289461daf16b011dc8b65f345 | |
| parent | 4f2dd875ffc9740b35b99adc11623266398275e0 (diff) | |
| parent | 2e5c6f8e36afca64b307cde04cf33e3d068be769 (diff) | |
Merge #557
557: Docs: add RTIC logo r=korken89 a=AfoHT
Co-authored-by: Henrik Tjäder <henrik@grepit.se>
| -rw-r--r-- | macros/src/lib.rs | 5 | ||||
| -rw-r--r-- | src/lib.rs | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 6ac7e2a..02d472d 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -1,5 +1,10 @@ // #![deny(warnings)] +#![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" +)] + extern crate proc_macro; use proc_macro::TokenStream; @@ -34,6 +34,10 @@ #![deny(rust_2018_idioms)] #![deny(warnings)] #![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" +)] use cortex_m::{interrupt::InterruptNumber, peripheral::NVIC}; pub use cortex_m_rtic_macros::app; |
