+ git clone -n https://github.com/xoviat/embassy.git code Cloning into 'code'... + cd code + git checkout 6c49a4dcf94c22212dcad23143f709e425658175 HEAD is now at 6c49a4dcf stm32: update default rcc wpan config and add default wpan config for wba + exec .github/ci/build.sh Restoring lockfiles... 2657 matched and restored, 0 new, 13 changed, 2670 total Updating git repository `https://github.com/embassy-rs/cargo-embassy-devtool` Ignored package `cargo-embassy-devtool v0.1.3 (https://github.com/embassy-rs/cargo-embassy-devtool?rev=7d6d61819cb5a54bd6fe7da88359c7949142932a#7d6d6181)` is already installed, use --force to override embassy-devtool version 0.1.3 Running `cargo batch --- check --manifest-path=/ci/code/docs/examples/layer-by-layer/blinky-async/Cargo.toml --t... (53733 chars)` in "/ci/code" - Environment {} Updating crates.io index Checking embassy-hal-internal v0.5.0 (/ci/code/embassy-hal-internal) Checking embassy-executor v0.10.0 (/ci/code/embassy-executor) Checking embassy-embedded-hal v0.6.0 (/ci/code/embassy-embedded-hal) Checking embassy-stm32 v0.6.0 (/ci/code/embassy-stm32) Checking embassy-mcxa v0.1.0 (/ci/code/embassy-mcxa) Checking embassy-nrf v0.10.0 (/ci/code/embassy-nrf) error[E0432]: unresolved import `crate::pac::rcc::vals::Rfwkpsel` --> /ci/code/embassy-stm32/src/rcc/l.rs:141:21 | 141 | use crate::pac::rcc::vals::Rfwkpsel; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `Rfwkpsel` in `rcc::vals` Checking embassy-stm32-wpan v0.1.0 (/ci/code/embassy-stm32-wpan) error[E0560]: struct `rcc::_version::Hse` has no field named `prescaler` --> /ci/code/embassy-stm32/src/rcc/l.rs:114:17 | 114 | prescaler: HsePrescaler::Div1, | ^^^^^^^^^ `rcc::_version::Hse` does not have this field | = note: all struct fields are already assigned error[E0433]: failed to resolve: use of undeclared type `HsePrescaler` --> /ci/code/embassy-stm32/src/rcc/l.rs:114:28 | 114 | prescaler: HsePrescaler::Div1, | ^^^^^^^^^^^^ | | | use of undeclared type `HsePrescaler` | help: an enum with a similar name exists: `AHBPrescaler` error[E0599]: no variant or associated item named `Div3` found for enum `Pllr` in the current scope --> /ci/code/embassy-stm32/src/rcc/l.rs:130:37 | 130 | divr: Some(PllRDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz | ^^^^ variant or associated item not found in `Pllr` | help: there is a variant with a similar name | 130 - divr: Some(PllRDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz 130 + divr: Some(PllRDiv::Div2, // 32 / 2 * 12 / 3 = 64Mhz | error[E0560]: struct `rcc::_version::Config` has no field named `core2_ahb_pre` --> /ci/code/embassy-stm32/src/rcc/l.rs:135:13 | 135 | core2_ahb_pre: AHBPrescaler::Div2, | ^^^^^^^^^^^^^ `rcc::_version::Config` does not have this field | = note: available fields are: `pllsai2` error[E0560]: struct `rcc::_version::Config` has no field named `shared_ahb_pre` --> /ci/code/embassy-stm32/src/rcc/l.rs:136:13 | 136 | shared_ahb_pre: AHBPrescaler::Div1, | ^^^^^^^^^^^^^^ `rcc::_version::Config` does not have this field | = note: available fields are: `pllsai2` error[E0609]: no field `rfwkpsel` on type `ClockMux` --> /ci/code/embassy-stm32/src/rcc/l.rs:145:21 | 145 | mux.rfwkpsel = Rfwkpsel::Lse; | ^^^^^^^^ unknown field | = note: available fields are: `rtcsel`, `adcsel`, `clk48sel`, `i2c1sel`, `i2c2sel` ... and 13 others error[E0560]: struct `pll::Pll` has no field named `prediv` --> /ci/code/embassy-stm32/src/rcc/l.rs:126:17 | 126 | prediv: PllPreDiv::Div2, | ^^^^^^ `pll::Pll` does not have this field | = note: available fields are: `div` error[E0433]: failed to resolve: use of undeclared type `PllPreDiv` --> /ci/code/embassy-stm32/src/rcc/l.rs:126:25 | 126 | prediv: PllPreDiv::Div2, | ^^^^^^^^^ | | | use of undeclared type `PllPreDiv` | help: an enum with a similar name exists: `PllDiv` error[E0560]: struct `pll::Pll` has no field named `divp` --> /ci/code/embassy-stm32/src/rcc/l.rs:128:17 | 128 | divp: Some(PllPDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz | ^^^^ unknown field | help: a field with a similar name exists | 128 - divp: Some(PllPDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz 128 + div: Some(PllPDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz | error[E0433]: failed to resolve: use of undeclared type `PllPDiv` --> /ci/code/embassy-stm32/src/rcc/l.rs:128:28 | 128 | divp: Some(PllPDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz | ^^^^^^^ | | | use of undeclared type `PllPDiv` | help: an enum with a similar name exists: `PllDiv` error[E0560]: struct `pll::Pll` has no field named `divq` --> /ci/code/embassy-stm32/src/rcc/l.rs:129:17 | 129 | divq: Some(PllQDiv::Div4), // 32 / 2 * 12 / 4 = 48Mhz | ^^^^ unknown field | help: a field with a similar name exists | 129 - divq: Some(PllQDiv::Div4), // 32 / 2 * 12 / 4 = 48Mhz 129 + div: Some(PllQDiv::Div4), // 32 / 2 * 12 / 4 = 48Mhz | error[E0433]: failed to resolve: use of undeclared type `PllQDiv` --> /ci/code/embassy-stm32/src/rcc/l.rs:129:28 | 129 | divq: Some(PllQDiv::Div4), // 32 / 2 * 12 / 4 = 48Mhz | ^^^^^^^ | | | use of undeclared type `PllQDiv` | help: an enum with a similar name exists: `PllDiv` error[E0560]: struct `pll::Pll` has no field named `divr` --> /ci/code/embassy-stm32/src/rcc/l.rs:130:17 | 130 | divr: Some(PllRDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz | ^^^^ unknown field | help: a field with a similar name exists | 130 - divr: Some(PllRDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz 130 + div: Some(PllRDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz | error[E0433]: failed to resolve: use of undeclared type `PllRDiv` --> /ci/code/embassy-stm32/src/rcc/l.rs:130:28 | 130 | divr: Some(PllRDiv::Div3), // 32 / 2 * 12 / 3 = 64Mhz | ^^^^^^^ | | | use of undeclared type `PllRDiv` | help: an enum with a similar name exists: `PllDiv` error[E0560]: struct `rcc::_version::Config` has no field named `pllsai1` --> /ci/code/embassy-stm32/src/rcc/l.rs:132:13 | 132 | pllsai1: None, | ^^^^^^^ `rcc::_version::Config` does not have this field | = note: available fields are: `voltage_scale` error[E0560]: struct `rcc::_version::Config` has no field named `core2_ahb_pre` --> /ci/code/embassy-stm32/src/rcc/l.rs:135:13 | 135 | core2_ahb_pre: AHBPrescaler::Div2, | ^^^^^^^^^^^^^ `rcc::_version::Config` does not have this field | = note: available fields are: `voltage_scale` error[E0560]: struct `rcc::_version::Config` has no field named `shared_ahb_pre` --> /ci/code/embassy-stm32/src/rcc/l.rs:136:13 | 136 | shared_ahb_pre: AHBPrescaler::Div1, | ^^^^^^^^^^^^^^ `rcc::_version::Config` does not have this field | = note: available fields are: `voltage_scale` error[E0609]: no field `rfwkpsel` on type `ClockMux` --> /ci/code/embassy-stm32/src/rcc/l.rs:145:21 | 145 | mux.rfwkpsel = Rfwkpsel::Lse; | ^^^^^^^^ unknown field | = note: available fields are: `clk48sel`, `i2c1sel`, `i2c3sel`, `lptim1sel`, `lpuart1sel` ... and 2 others error[E0560]: struct `rcc::_version::Config` has no field named `pllsai1` --> /ci/code/embassy-stm32/src/rcc/l.rs:132:13 | 132 | pllsai1: None, | ^^^^^^^ `rcc::_version::Config` does not have this field | = note: all struct fields are already assigned error[E0560]: struct `rcc::_version::Config` has no field named `core2_ahb_pre` --> /ci/code/embassy-stm32/src/rcc/l.rs:135:13 | 135 | core2_ahb_pre: AHBPrescaler::Div2, | ^^^^^^^^^^^^^ `rcc::_version::Config` does not have this field | = note: all struct fields are already assigned error[E0560]: struct `rcc::_version::Config` has no field named `shared_ahb_pre` --> /ci/code/embassy-stm32/src/rcc/l.rs:136:13 | 136 | shared_ahb_pre: AHBPrescaler::Div1, | ^^^^^^^^^^^^^^ `rcc::_version::Config` does not have this field | = note: all struct fields are already assigned error[E0560]: struct `rcc::_version::Config` has no field named `apb2_pre` --> /ci/code/embassy-stm32/src/rcc/l.rs:138:13 | 138 | apb2_pre: APBPrescaler::Div1, | ^^^^^^^^ `rcc::_version::Config` does not have this field | = note: all struct fields are already assigned error[E0609]: no field `rfwkpsel` on type `ClockMux` --> /ci/code/embassy-stm32/src/rcc/l.rs:145:21 | 145 | mux.rfwkpsel = Rfwkpsel::Lse; | ^^^^^^^^ unknown field | = note: available fields are: `rtcsel`, `adcsel`, `clk48sel`, `i2c1sel`, `i2c3sel` ... and 10 others Some errors have detailed explanations: E0432, E0433, E0560, E0609. For more information about an error, try `rustc --explain E0432`. error: could not compile `embassy-stm32` (lib) due to 15 previous errors target: Target(CompileTarget { name: "thumbv6m-none-eabi" }) features: ["_executor", "_time-driver", "default", "defmt", "executor-thread", "exti", "low-power", "memory-x", "rt", "stm32l073rz", "time", "time-driver-any", "unstable-pac"] warning: build failed, waiting for other jobs to finish... Some errors have detailed explanations: E0432, E0433, E0560, E0599, E0609. error: could not compile `embassy-stm32` (lib) due to 7 previous errors target: Target(CompileTarget { name: "thumbv7em-none-eabi" }) features: ["_time-driver", "chrono", "default", "defmt", "dual-bank", "exti", "memory-x", "rt", "stm32l4r5zi", "time", "time-driver-any", "unstable-pac"] error: could not compile `embassy-stm32` (lib) due to 8 previous errors target: Target(CompileTarget { name: "thumbv6m-none-eabi" }) features: ["_time-driver", "chrono", "default", "defmt", "exti", "memory-x", "rt", "stm32u083mc", "time", "time-driver-any", "unstable-pac"] run failed: rpc error: code = Canceled desc = context canceled