mirror of
https://gitlab.cern.ch/wotsubo/endcap-sl-software-ri-generator.git
synced 2025-02-23 00:57:08 +09:00
fix: missing interpolation (reg_type_def_with_field, GtyDelayBank123
)
This commit is contained in:
parent
cc0fe59b28
commit
71c25dd379
1 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ fn reg_type_def_with_field(
|
||||||
inner: #type_ux,
|
inner: #type_ux,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GtyDelayBank123 {
|
impl #upper_camel_name {
|
||||||
#(#code_getters)*
|
#(#code_getters)*
|
||||||
|
|
||||||
#(#code_setters)*
|
#(#code_setters)*
|
||||||
|
@ -143,7 +143,7 @@ fn reg_type_def_with_field(
|
||||||
Ok(Self { inner: value })
|
Ok(Self { inner: value })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl From<GtyDelayBank123> for u32 {
|
impl From<#upper_camel_name> for u32 {
|
||||||
fn from(value: #upper_camel_name) -> Self {
|
fn from(value: #upper_camel_name) -> Self {
|
||||||
value.inner
|
value.inner
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue