Merge branch 'main' into looping-adc-read

This commit is contained in:
Ulf Lilleengen 2025-08-25 09:53:18 +02:00 committed by GitHub
commit cfe71df123
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- fix: Fix performing a hash after performing a hmac - fix: Fix performing a hash after performing a hmac
- chore: Updated stm32-metapac and stm32-data dependencies - chore: Updated stm32-metapac and stm32-data dependencies
- feat: stm32/adc/v3: allow DMA reads to loop through enable channels - feat: stm32/adc/v3: allow DMA reads to loop through enable channels
- fix: Fix XSPI not disabling alternate bytes when they were previously enabled
## 0.3.0 - 2025-08-12 ## 0.3.0 - 2025-08-12

View File

@ -429,6 +429,11 @@ impl<'d, T: Instance, M: PeriMode> Xspi<'d, T, M> {
w.set_abdtr(command.abdtr); w.set_abdtr(command.abdtr);
w.set_absize(CcrAbsize::from_bits(command.absize.into())); w.set_absize(CcrAbsize::from_bits(command.absize.into()));
}) })
} else {
T::REGS.ccr().modify(|w| {
// disable alternate bytes
w.set_abmode(CcrAbmode::B_0X0);
})
} }
// Configure dummy cycles // Configure dummy cycles