Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: document our assign_resources macro #38

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/riot-rs-embassy/src/assign_resources.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/// Similarly to
/// [`assign_resources`](https://docs.rs/assign-resources/latest/assign_resources/macro.assign_resources.html),
/// this macro allows to extract the specified peripherals from `OptionalPeripherals` for use in an
/// application.
///
/// It makes sense to use this macro multiple times, coupled with conditional compilation (using
/// the [`cfg`
/// attribute](https://doc.rust-lang.org/reference/conditional-compilation.html#the-cfg-attribute)),
/// to define different setups for different boards.
///
/// Using the `assign_resources!` macro to define the peripherals to extract will generate another
/// macro, `split_resources!`, that allows to obtain the requested peripherals where needed (see
/// the original documentation for details).
/// `split_resources!` should be provided with an instance of `OptionalPeripherals` to extract
/// peripherals from.
// Based on https://github.com/adamgreig/assign-resources/tree/94ad10e2729afdf0fd5a77cd12e68409a982f58a
// under MIT license
#[macro_export]
Expand Down
Loading