File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
89
89
- Replace gpio traits with digital::v2
90
90
- Bump ` stm32f1 ` dependency (` 0.8.0 ` )
91
91
- ADC now requires the clock configuration for initialisation
92
- - ` disable_jtag ` now transforms PA15, PB3 and PB4 to forbid their use without desactivating JTAG
92
+ - ` disable_jtag ` now transforms PA15, PB3 and PB4 to forbid their use without deactivating JTAG
93
93
94
94
### Changed
95
95
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ use cortex_m_rt::entry;
17
17
18
18
#[ entry]
19
19
fn main ( ) -> ! {
20
- // Aquire peripherals
20
+ // Acquire peripherals
21
21
let p = pac:: Peripherals :: take ( ) . unwrap ( ) ;
22
22
let mut flash = p. FLASH . constrain ( ) ;
23
23
let mut rcc = p. RCC . constrain ( ) ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use cortex_m_rt::entry;
16
16
17
17
#[ entry]
18
18
fn main ( ) -> ! {
19
- // Aquire peripherals
19
+ // Acquire peripherals
20
20
let p = pac:: Peripherals :: take ( ) . unwrap ( ) ;
21
21
let mut flash = p. FLASH . constrain ( ) ;
22
22
let mut rcc = p. RCC . constrain ( ) ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use cortex_m_semihosting::hprintln;
15
15
16
16
#[ entry]
17
17
fn main ( ) -> ! {
18
- // Aquire peripherals
18
+ // Acquire peripherals
19
19
let p = pac:: Peripherals :: take ( ) . unwrap ( ) ;
20
20
let mut flash = p. FLASH . constrain ( ) ;
21
21
let mut rcc = p. RCC . constrain ( ) ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use cortex_m_semihosting::hprintln;
15
15
16
16
#[ entry]
17
17
fn main ( ) -> ! {
18
- // Aquire peripherals
18
+ // Acquire peripherals
19
19
let p = pac:: Peripherals :: take ( ) . unwrap ( ) ;
20
20
let mut flash = p. FLASH . constrain ( ) ;
21
21
let mut rcc = p. RCC . constrain ( ) ;
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ impl Rtc {
199
199
// Put the clock into config mode
200
200
self . regs . crl . modify ( |_, w| w. cnf ( ) . set_bit ( ) ) ;
201
201
202
- // Perform the write opertaion
202
+ // Perform the write operation
203
203
func ( self ) ;
204
204
205
205
// Take the device out of config mode
You can’t perform that action at this time.
0 commit comments