File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Changed
11
+
12
+ - Added support for more CAN bit rates and modes. ([ #186 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/186 )
13
+
10
14
## [ v0.6.1] - 2020-12-10
11
15
12
16
### Changed
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ use crate::stm32;
20
20
use nb:: { self , Error } ;
21
21
22
22
use core:: sync:: atomic:: { AtomicU8 , Ordering } ;
23
- use stm32:: can:: btr:: LBKM_A ;
23
+ pub use stm32:: can:: btr:: LBKM_A ;
24
24
25
25
const EXID_MASK : u32 = 0b1_1111_1111_1100_0000_0000_0000_0000 ;
26
26
const MAX_EXTENDED_ID : u32 = 0x1FFF_FFFF ;
@@ -360,7 +360,7 @@ impl Can {
360
360
_tx : tx,
361
361
}
362
362
}
363
- /// Initialize the CAN Peripheral
363
+ /// Initialize the CAN Peripheral using default options from `CanOpts::default()`
364
364
pub fn new (
365
365
can : stm32:: CAN ,
366
366
rx : gpioa:: PA11 < AF9 > ,
You can’t perform that action at this time.
0 commit comments