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.
2 parents 609af0a + bcd0f4a commit 13a66d4Copy full SHA for 13a66d4
.travis.yml
@@ -4,8 +4,6 @@ rust:
4
- stable
5
- nightly
6
7
-cache: cargo
8
-
9
matrix:
10
allow_failures:
11
- rust: nightly
CHANGELOG.md
@@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
13
- Implement blocking Write for UART
14
- Implement blocking Read for I2C
15
16
+### Fixed
17
+- Regression in v0.4.0 that set SPI to LSB-first ordering
18
+
19
## [v0.4.0] - 2019-12-27
20
21
### Added
src/spi.rs
@@ -182,7 +182,7 @@ macro_rules! hal {
182
w.spe()
183
.enabled()
184
.lsbfirst()
185
- .lsbfirst()
+ .msbfirst()
186
.ssi()
187
.slave_not_selected()
188
.ssm()
0 commit comments