mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
fix gh-pages build
This commit is contained in:
parent
4ff28e9d13
commit
c8197f524e
5 changed files with 38 additions and 15 deletions
|
|
@ -2,13 +2,13 @@
|
|||
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
||||
categories = ["concurrency", "embedded", "no-std"]
|
||||
description = "Procedural macros of the cortex-m-rtfm crate"
|
||||
documentation = "https://japaric.github.io/cortex-m-rtfm/api/cortex_m_rtfm"
|
||||
documentation = "https://rtfm-rs.github.io/cortex-m-rtfm/api/cortex_m_rtfm"
|
||||
edition = "2018"
|
||||
keywords = ["arm", "cortex-m"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
name = "cortex-m-rtfm-macros"
|
||||
readme = "../README.md"
|
||||
repository = "https://github.com/japaric/cortex-m-rtfm"
|
||||
repository = "https://github.com/rtfm-rs/cortex-m-rtfm"
|
||||
version = "0.5.0-alpha.1"
|
||||
|
||||
[lib]
|
||||
|
|
@ -20,7 +20,7 @@ quote = "1"
|
|||
syn = "1"
|
||||
|
||||
[dependencies.rtfm-syntax]
|
||||
git = "https://github.com/japaric/rtfm-syntax"
|
||||
git = "https://github.com/rtfm-rs/rtfm-syntax"
|
||||
|
||||
[features]
|
||||
heterogeneous = []
|
||||
|
|
|
|||
|
|
@ -89,9 +89,9 @@ mod tests;
|
|||
///
|
||||
/// - `resources: <fn-name>::Resources`. A `struct` that contains all the resources that can be
|
||||
/// accessed from this context. Each field is a different resource; each resource may appear as a
|
||||
/// reference (`&[mut]-`) or as proxy structure that implements the [`rftm::Mutex`] trait.
|
||||
/// reference (`&[mut]-`) or as proxy structure that implements the [`rftm::Mutex`][rtfm-mutex] trait.
|
||||
///
|
||||
/// [`rtfm::Mutex`]: ../rtfm/trait.Mutex.html
|
||||
/// [rtfm-mutex]: ../rtfm/trait.Mutex.html
|
||||
///
|
||||
/// - `schedule: <fn-name>::Schedule`. A `struct` that can be used to schedule *software* tasks.
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue