mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-30 22:01:07 +00:00
Merge branch 'main' into looping-adc-read
This commit is contained in:
commit
cfe71df123
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user