mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 12:20:56 +00:00
upgrade to 1.89.0.0 for CI (#4102)
* upgrade to 1.89.0.0 for CI * regenerate baseline * Resolve clippy errors --------- Co-authored-by: Jesse Braham <jesse@beta7.io>
This commit is contained in:
parent
b3a17079e8
commit
3f024529e2
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -71,7 +71,7 @@ jobs:
|
|||||||
# Install the Rust toolchain for Xtensa devices:
|
# Install the Rust toolchain for Xtensa devices:
|
||||||
- uses: esp-rs/xtensa-toolchain@v1.6
|
- uses: esp-rs/xtensa-toolchain@v1.6
|
||||||
with:
|
with:
|
||||||
version: 1.88.0.0
|
version: 1.89.0.0
|
||||||
|
|
||||||
# Install the Rust stable toolchain for RISC-V devices:
|
# Install the Rust stable toolchain for RISC-V devices:
|
||||||
- uses: dtolnay/rust-toolchain@v1
|
- uses: dtolnay/rust-toolchain@v1
|
||||||
|
2
.github/workflows/documentation.yml
vendored
2
.github/workflows/documentation.yml
vendored
@ -86,7 +86,7 @@ jobs:
|
|||||||
- uses: esp-rs/xtensa-toolchain@v1.6
|
- uses: esp-rs/xtensa-toolchain@v1.6
|
||||||
with:
|
with:
|
||||||
default: true
|
default: true
|
||||||
version: 1.88.0.0
|
version: 1.89.0.0
|
||||||
|
|
||||||
# xtensa-toolchain installs rustup and a basic toolchain, but doesn't install rust-src
|
# xtensa-toolchain installs rustup and a basic toolchain, but doesn't install rust-src
|
||||||
- name: rust-src
|
- name: rust-src
|
||||||
|
2
.github/workflows/hil.yml
vendored
2
.github/workflows/hil.yml
vendored
@ -124,7 +124,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
buildtargets: ${{ matrix.target.soc }}
|
buildtargets: ${{ matrix.target.soc }}
|
||||||
default: true
|
default: true
|
||||||
version: 1.88.0.0
|
version: 1.89.0.0
|
||||||
|
|
||||||
- name: Build tests
|
- name: Build tests
|
||||||
run: cargo xtask build tests ${{ matrix.target.soc }}
|
run: cargo xtask build tests ${{ matrix.target.soc }}
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -189,10 +189,10 @@ impl<'d> Camera<'d> {
|
|||||||
)
|
)
|
||||||
.map_err(ConfigError::Clock)?;
|
.map_err(ConfigError::Clock)?;
|
||||||
|
|
||||||
if let Some(value) = config.line_interrupt {
|
if let Some(value) = config.line_interrupt
|
||||||
if value > 0b0111_1111 {
|
&& value > 0b0111_1111
|
||||||
return Err(ConfigError::LineInterrupt);
|
{
|
||||||
}
|
return Err(ConfigError::LineInterrupt);
|
||||||
}
|
}
|
||||||
|
|
||||||
self.regs().cam_ctrl().write(|w| {
|
self.regs().cam_ctrl().write(|w| {
|
||||||
|
@ -151,10 +151,10 @@ impl<Tm: TouchMode, Dm: DriverMode> Touch<'_, Tm, Dm> {
|
|||||||
|
|
||||||
// Default nr of sleep cycles from IDF
|
// Default nr of sleep cycles from IDF
|
||||||
let mut sleep_cyc = 0x1000;
|
let mut sleep_cyc = 0x1000;
|
||||||
if let Some(config) = config {
|
if let Some(config) = config
|
||||||
if let Some(slp) = config.sleep_cycles {
|
&& let Some(slp) = config.sleep_cycles
|
||||||
sleep_cyc = slp;
|
{
|
||||||
}
|
sleep_cyc = slp;
|
||||||
}
|
}
|
||||||
|
|
||||||
Self::initialize_common(config);
|
Self::initialize_common(config);
|
||||||
@ -201,10 +201,10 @@ impl<'d> Touch<'d, OneShot, Blocking> {
|
|||||||
|
|
||||||
// Default nr of sleep cycles from IDF
|
// Default nr of sleep cycles from IDF
|
||||||
let mut sleep_cyc = 0x1000;
|
let mut sleep_cyc = 0x1000;
|
||||||
if let Some(config) = config {
|
if let Some(config) = config
|
||||||
if let Some(slp) = config.sleep_cycles {
|
&& let Some(slp) = config.sleep_cycles
|
||||||
sleep_cyc = slp;
|
{
|
||||||
}
|
sleep_cyc = slp;
|
||||||
}
|
}
|
||||||
|
|
||||||
Self::initialize_common(config);
|
Self::initialize_common(config);
|
||||||
|
@ -35,7 +35,7 @@ reqwest = { version = "0.12.12", features = [
|
|||||||
], optional = true }
|
], optional = true }
|
||||||
|
|
||||||
# This pulls a gazillion crates - don't include it by default
|
# This pulls a gazillion crates - don't include it by default
|
||||||
cargo-semver-checks = { version = "0.41.0", optional = true }
|
cargo-semver-checks = { version = "0.43.0", optional = true }
|
||||||
|
|
||||||
flate2 = { version = "1.1.1", optional = true }
|
flate2 = { version = "1.1.1", optional = true }
|
||||||
temp-file = { version = "0.1.9", optional = true }
|
temp-file = { version = "0.1.9", optional = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user