We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 186c0dc commit bce2249Copy full SHA for bce2249
src/rcc.rs
@@ -154,12 +154,12 @@ impl CFGR {
154
0 => unreachable!(),
155
1 => 0b0111,
156
2 => 0b1000,
157
- 3...5 => 0b1001,
158
- 6...11 => 0b1010,
159
- 12...39 => 0b1011,
160
- 40...95 => 0b1100,
161
- 96...191 => 0b1101,
162
- 192...383 => 0b1110,
+ 3..=5 => 0b1001,
+ 6..=11 => 0b1010,
+ 12..=39 => 0b1011,
+ 40..=95 => 0b1100,
+ 96..=191 => 0b1101,
+ 192..=383 => 0b1110,
163
_ => 0b1111,
164
};
165
0 commit comments