Skip to content

Commit e4e6b38

Browse files
authored
Merge pull request #773 from rust-embedded/fix-clusters
Fix cluster arrays
2 parents 10edb19 + 423ccb3 commit e4e6b38

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
- Fix cluster arrays
1011
- Remove needless reference in `ArrayElemAccessor`
1112

1213
## [v0.31.0] - 2023-11-24

src/generate/peripheral.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ fn expand_cluster(cluster: &Cluster, config: &Config) -> Result<Vec<RegisterBloc
10351035

10361036
let array_convertible = sequential_addresses && convert_list;
10371037

1038-
if !convert_list {
1038+
if convert_list {
10391039
let span = Span::call_site();
10401040
let nb_name_sc = if let Some(dim_name) = array_info.dim_name.as_ref() {
10411041
dim_name.to_snake_case_ident(span)

0 commit comments

Comments
 (0)