We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6153d7d commit 1d737d8Copy full SHA for 1d737d8
zephyr/src/sys.rs
@@ -149,6 +149,12 @@ pub mod flash {
149
150
use crate::raw;
151
152
+ /// A flash controller
153
+ ///
154
+ /// This is a wrapper around the `struct device` in Zephyr that represents a flash controller.
155
+ /// Using the flash controller allows flash operations on the entire device. See
156
+ /// [`FlashPartition`] for a wrapper that limits the operation to a partition as defined in the
157
+ /// DT.
158
#[allow(dead_code)]
159
pub struct FlashController {
160
pub(crate) device: *const raw::device,
0 commit comments