File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
20
20
- i2s module don't reuse marker from spi module and define its own.
21
21
- ` i2s-audio-out ` example updated and now use pcm5102 dac module instead one from discovery board.
22
22
- extend visibility of gpio/marker to crate since i2s module require it.
23
+ - Bump ` synopsys-usb-otg ` to ` 0.3.0 `
23
24
24
25
### Added
25
26
- example of using i2s in out with rtic and interrupt.
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ cortex-m-rt = "0.7"
34
34
nb = " 1"
35
35
rand_core = " 0.6"
36
36
stm32f4 = " 0.14.0"
37
- synopsys-usb-otg = { version = " 0.2 .0" , features = [" cortex-m" ], optional = true }
37
+ synopsys-usb-otg = { version = " 0.3 .0" , features = [" cortex-m" ], optional = true }
38
38
sdio-host = { version = " 0.6.0" , optional = true }
39
39
embedded-dma = " 0.2.0"
40
40
bare-metal = { version = " 1" }
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ unsafe impl UsbPeripheral for USB {
58
58
}
59
59
60
60
fn ahb_frequency_hz ( & self ) -> u32 {
61
- self . hclk . 0
61
+ self . hclk . raw ( )
62
62
}
63
63
}
64
64
You can’t perform that action at this time.
0 commit comments