Skip to content

Commit

Permalink
fix: enable backup symbol clock
Browse files Browse the repository at this point in the history
  • Loading branch information
elagil committed Nov 17, 2024
1 parent 577a429 commit 0650b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion embassy-stm32/src/spdifrx/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ impl<'d, T: Instance> Spdifrx<'d, T> {
cr.set_cksen(true); // Generate a symbol clock.

#[cfg(stm32h7)]
cr.set_cksbkpen(false); // Do not generate a backup symbol clock.
cr.set_cksbkpen(true); // Generate a backup symbol clock.
});
}

Expand Down

0 comments on commit 0650b13

Please sign in to comment.