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 75952a0 commit 112aa63Copy full SHA for 112aa63
stm32-data-serde/src/lib.rs
@@ -51,7 +51,8 @@ pub mod chip {
51
pub size: u32,
52
#[serde(skip_serializing_if = "Option::is_none")]
53
pub settings: Option<memory::Settings>,
54
- #[serde(skip)] // as embassy doesn't need this, don't include it in the generated data
+ // probe-rs needs access attributes for automated tests
55
+ #[serde(skip_serializing_if = "Option::is_none")]
56
pub access: Option<memory::Access>,
57
}
58
0 commit comments