Merge pull request #1928 from sgoll/fix-r2-voltage-range

stm32/f2: Fix typo in RCC voltage range docs
This commit is contained in:
Dario Nieuwenhuis 2023-09-19 12:03:40 +00:00 committed by GitHub
commit c573959a95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -208,13 +208,13 @@ pub struct PLLClocks {
/// Used to calculate flash waitstates. See /// Used to calculate flash waitstates. See
/// RM0033 - Table 3. Number of wait states according to Cortex®-M3 clock frequency /// RM0033 - Table 3. Number of wait states according to Cortex®-M3 clock frequency
pub enum VoltageScale { pub enum VoltageScale {
/// 2.7v to 4.6v /// 2.7 to 3.6 V
Range0, Range0,
/// 2.4v to 2.7v /// 2.4 to 2.7 V
Range1, Range1,
/// 2.1v to 2.4v /// 2.1 to 2.4 V
Range2, Range2,
/// 1.8v to 2.1v /// 1.8 to 2.1 V
Range3, Range3,
} }