mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 06:40:47 +00:00
Fix s3 RC_FAST_CLK powerdown (#796)
This commit is contained in:
parent
08a4722ca2
commit
6d936680ea
@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- S3: Allow powering down RC_FAST_CLK (#796)
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- `Pin::is_pcore_interrupt_set` (#793)
|
- `Pin::is_pcore_interrupt_set` (#793)
|
||||||
|
@ -844,7 +844,7 @@ impl RtcSleepConfig {
|
|||||||
|
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
rtc_cntl.clk_conf.modify(|_, w| w
|
rtc_cntl.clk_conf.modify(|_, w| w
|
||||||
.ck8m_force_pu().bit(self.int_8m_pd_en())
|
.ck8m_force_pu().bit(!self.int_8m_pd_en())
|
||||||
);
|
);
|
||||||
|
|
||||||
// enable VDDSDIO control by state machine
|
// enable VDDSDIO control by state machine
|
||||||
|
Loading…
x
Reference in New Issue
Block a user