Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
usbalbin committed Dec 16, 2024
1 parent dbe27a0 commit 5bbd409
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/ethernet-rtic-stm32h747i-disco.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ mod app {
let pwrcfg = pwr.smps().freeze();

// Link the SRAM3 power state to CPU1
ctx.device.RCC.ahb2enr().modify(|_, w| w.sram3en().set_bit());
ctx.device
.RCC
.ahb2enr()
.modify(|_, w| w.sram3en().set_bit());

// Initialise clocks...
let rcc = ctx.device.RCC.constrain();
Expand Down

0 comments on commit 5bbd409

Please sign in to comment.