File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
11
11
12
12
- complete and rework Dma Stream API [ #666 ]
13
13
- SPI bidi takes 2 pins [ #526 ]
14
+ - ` Fast Read Quad I/O (EBh) ` in ` qspi-w25q ` example now matches W25QXX datasheet. [ #682 ]
14
15
15
16
### Fixed
16
17
@@ -25,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
25
26
[ #666 ] : https://github.com/stm32-rs/stm32f4xx-hal/pull/666
26
27
[ #677 ] : https://github.com/stm32-rs/stm32f4xx-hal/pull/677
27
28
[ #678 ] : https://github.com/stm32-rs/stm32f4xx-hal/pull/678
29
+ [ #682 ] : https://github.com/stm32-rs/stm32f4xx-hal/pull/682
28
30
29
31
## [ v0.17.1] - 2023-07-24
30
32
Original file line number Diff line number Diff line change @@ -123,7 +123,9 @@ where
123
123
QspiReadCommand :: new ( data, QspiMode :: QuadChannel )
124
124
. instruction ( 0xEB , QspiMode :: SingleChannel )
125
125
. address ( address, QspiMode :: QuadChannel )
126
- . dummy_cycles ( 6 ) ,
126
+ // the M0-M7 bits will be send by alternate_bytes, and the value should be 0xFX
127
+ . alternate_bytes ( & [ 0xFF ] , QspiMode :: QuadChannel )
128
+ . dummy_cycles ( 4 ) ,
127
129
) ?;
128
130
129
131
Ok ( ( ) )
@@ -135,7 +137,9 @@ where
135
137
. instruction ( 0xEB , QspiMode :: SingleChannel )
136
138
. address_mode ( QspiMode :: QuadChannel )
137
139
. data_mode ( QspiMode :: QuadChannel )
138
- . dummy_cycles ( 6 ) ,
140
+ // the M0-M7 bits will be send by alternate_bytes, and the value should be 0xFX
141
+ . alternate_bytes ( & [ 0xFF ] , QspiMode :: QuadChannel )
142
+ . dummy_cycles ( 4 ) ,
139
143
)
140
144
}
141
145
}
You can’t perform that action at this time.
0 commit comments