fix: enable backup symbol clock

This commit is contained in:
elagil 2024-11-18 20:51:23 +01:00
parent 1ce1e193b7
commit de7fae1822

View File

@ -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.
});
}