Merge pull request #2668 from tomasbarton-stemcell/patch-1

Update stm32c0 HSI frequency
This commit is contained in:
Dario Nieuwenhuis 2024-03-07 15:01:46 +00:00 committed by GitHub
commit 5d4bcaebcf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ use crate::pac::{FLASH, RCC};
use crate::time::Hertz;
/// HSI speed
pub const HSI_FREQ: Hertz = Hertz(16_000_000);
pub const HSI_FREQ: Hertz = Hertz(48_000_000);
/// HSE Mode
#[derive(Clone, Copy, Eq, PartialEq)]