diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-09-19 12:03:40 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-19 12:03:40 +0000 |
| commit | c573959a956802eb177d04fa5b7802397af19f93 (patch) | |
| tree | c02c9a0c0d0eb4563d6d9ae868fc59a37f7cb30c | |
| parent | b1abaa380f405dcfa3a58fb430ce8ca707a37c6d (diff) | |
| parent | 561696dfadba90c2b24a1fddd5f8b4370ab9cc0b (diff) | |
Merge pull request #1928 from sgoll/fix-r2-voltage-range
stm32/f2: Fix typo in RCC voltage range docs
| -rw-r--r-- | embassy-stm32/src/rcc/f2.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/embassy-stm32/src/rcc/f2.rs b/embassy-stm32/src/rcc/f2.rs index af90a9c3f..1a34c2cbe 100644 --- a/embassy-stm32/src/rcc/f2.rs +++ b/embassy-stm32/src/rcc/f2.rs | |||
| @@ -208,13 +208,13 @@ pub struct PLLClocks { | |||
| 208 | /// Used to calculate flash waitstates. See | 208 | /// Used to calculate flash waitstates. See |
| 209 | /// RM0033 - Table 3. Number of wait states according to Cortex®-M3 clock frequency | 209 | /// RM0033 - Table 3. Number of wait states according to Cortex®-M3 clock frequency |
| 210 | pub enum VoltageScale { | 210 | pub enum VoltageScale { |
| 211 | /// 2.7v to 4.6v | 211 | /// 2.7 to 3.6 V |
| 212 | Range0, | 212 | Range0, |
| 213 | /// 2.4v to 2.7v | 213 | /// 2.4 to 2.7 V |
| 214 | Range1, | 214 | Range1, |
| 215 | /// 2.1v to 2.4v | 215 | /// 2.1 to 2.4 V |
| 216 | Range2, | 216 | Range2, |
| 217 | /// 1.8v to 2.1v | 217 | /// 1.8 to 2.1 V |
| 218 | Range3, | 218 | Range3, |
| 219 | } | 219 | } |
| 220 | 220 | ||
