Skip to content

fix: compilation on nightly #324

fix: compilation on nightly

fix: compilation on nightly #324

Triggered via push December 4, 2023 23:04
Status Success
Total duration 1m 33s
Artifacts

ci.yml

on: push
Matrix: ci
Fit to window
Zoom out
Zoom in

Annotations

329 warnings
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L174
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:174:23 | 174 | .bits(total_height as u16) | ^^^^^^^^^^^^^^^^^^^ help: try: `total_height` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L172
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:172:23 | 172 | .bits(total_width as u16) | ^^^^^^^^^^^^^^^^^^ help: try: `total_width` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L168
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:168:23 | 168 | .bits((config.v_sync + config.v_back_porch + config.active_height - 1) as u16) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(config.v_sync + config.v_back_porch + config.active_height - 1)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L166
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:166:23 | 166 | .bits((config.h_sync + config.h_back_porch + config.active_width - 1) as u16) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(config.h_sync + config.h_back_porch + config.active_width - 1)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L162
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:162:23 | 162 | .bits((config.v_sync + config.v_back_porch - 1) as u16) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(config.v_sync + config.v_back_porch - 1)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L160
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:160:23 | 160 | .bits((config.h_sync + config.h_back_porch - 1) as u16) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(config.h_sync + config.h_back_porch - 1)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L156
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:156:23 | 156 | .bits((config.v_sync - 1) as u16) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(config.v_sync - 1)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u16` -> `u16`): src/ltdc.rs#L154
warning: casting to the same type is unnecessary (`u16` -> `u16`) --> src/ltdc.rs:154:23 | 154 | .bits((config.h_sync - 1) as u16) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(config.h_sync - 1)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
unneeded late initialization: src/ltdc.rs#L86
warning: unneeded late initialization --> src/ltdc.rs:86:9 | 86 | let base_clk: u32; | ^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_late_init = note: `#[warn(clippy::needless_late_init)]` on by default help: declare `base_clk` here | 87 | let base_clk: u32 = match &hse { | +++++++++++++++++++ help: remove the assignments from the `match` arms | 88 ~ Some(hse) => hse.freq.raw(), 89 | // If no HSE is provided, we use the HSI clock at 16 MHz 90 ~ None => 16_000_000, | help: add a semicolon after the `match` expression | 91 | }; | +
casting to the same type is unnecessary (`u8` -> `u8`): src/i2c.rs#L317
warning: casting to the same type is unnecessary (`u8` -> `u8`) --> src/i2c.rs:317:25 | 317 | presc = tmp_presc as u8; | ^^^^^^^^^^^^^^^ help: try: `tmp_presc` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u64` -> `u64`): src/rcc.rs#L602
warning: casting to the same type is unnecessary (`u64` -> `u64`) --> src/rcc.rs:602:44 | 602 | ... let pll48clk = base_clk as u64 * self.pllsain as u64 | ^^^^^^^^^^^^^^^ help: try: `base_clk` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u64` -> `u64`): src/rcc.rs#L593
warning: casting to the same type is unnecessary (`u64` -> `u64`) --> src/rcc.rs:593:40 | 593 | let pll48clk = base_clk as u64 * self.plln as u64 | ^^^^^^^^^^^^^^^ help: try: `base_clk` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`u64` -> `u64`): src/rcc.rs#L578
warning: casting to the same type is unnecessary (`u64` -> `u64`) --> src/rcc.rs:578:22 | 578 | sysclk = base_clk as u64 * self.plln as u64 | ^^^^^^^^^^^^^^^ help: try: `base_clk` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
this `impl` can be derived: src/dma.rs#L640
warning: this `impl` can be derived --> src/dma.rs:640:1 | 640 | / impl Default for Interrupts { 641 | | fn default() -> Self { 642 | | Self { 643 | | transfer_complete: false, ... | 648 | | } 649 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default = help: remove the manual implementation... help: ...and instead derive it | 633 + #[derive(Default)] 634 | pub struct Interrupts { |
the following explicit lifetimes could be elided: 'r: src/dma.rs#L588
warning: the following explicit lifetimes could be elided: 'r --> src/dma.rs:588:27 | 588 | fn select<'r>(w: &'r mut dma2::st::cr::W) | ^^ ^^ 589 | -> &'r mut dma2::st::cr::W | ^^ ... 600 | / impl_channel!( 601 | | Channel0, 0; 602 | | Channel1, 1; 603 | | Channel2, 2; ... | 608 | | Channel7, 7; 609 | | ); | | - | |_| | |_in this macro invocation | |_in this macro invocation | in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default = note: this warning originates in the macro `impl_channel` (in Nightly builds, run with -Z macro-backtrace for more info) help: elide the lifetimes | 588 ~ fn select(w: &mut dma2::st::cr::W) 589 ~ -> &mut dma2::st::cr::W |
unnecessary `unsafe` block: src/timer.rs#L535
warning: unnecessary `unsafe` block --> src/timer.rs:535:31 | 535 | ccr.write(|w| unsafe { w.bits(value) }) | ^^^^^^ unnecessary `unsafe` block ... 729 | / hal! { 730 | | pac::TIM2: [Timer2, u32, c: (CH4), m: tim2,], 731 | | pac::TIM3: [Timer3, u16, c: (CH4), m: tim3,], 732 | | pac::TIM4: [Timer4, u16, c: (CH4), m: tim3,], ... | 744 | | pac::TIM11: [Timer11, u16, c: (CH1),], 745 | | } | |_- in this macro invocation | = note: this warning originates in the macro `with_pwm` which comes from the expansion of the macro `hal` (in Nightly builds, run with -Z macro-backtrace for more info)
unnecessary `unsafe` block: src/timer.rs#L535
warning: unnecessary `unsafe` block --> src/timer.rs:535:31 | 535 | ccr.write(|w| unsafe { w.bits(value) }) | ^^^^^^ unnecessary `unsafe` block ... 729 | / hal! { 730 | | pac::TIM2: [Timer2, u32, c: (CH4), m: tim2,], 731 | | pac::TIM3: [Timer3, u16, c: (CH4), m: tim3,], 732 | | pac::TIM4: [Timer4, u16, c: (CH4), m: tim3,], ... | 744 | | pac::TIM11: [Timer11, u16, c: (CH1),], 745 | | } | |_- in this macro invocation | = note: `#[warn(unused_unsafe)]` on by default = note: this warning originates in the macro `with_pwm` which comes from the expansion of the macro `hal` (in Nightly builds, run with -Z macro-backtrace for more info)
unneeded sub `cfg` when there is only one condition: src/timer/pwm_input.rs#L209
warning: unneeded sub `cfg` when there is only one condition --> src/timer/pwm_input.rs:209:7 | 209 | #[cfg(any(feature = "stm32f411",))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "stm32f411"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg
unneeded sub `cfg` when there is only one condition: src/serial.rs#L541
warning: unneeded sub `cfg` when there is only one condition --> src/serial.rs:541:7 | 541 | #[cfg(any(feature = "device-selected",))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "device-selected"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg = note: `#[warn(clippy::non_minimal_cfg)]` on by default
ci (stm32f722, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f722, stable): src/otg_hs.rs#L12
unused import: `BusClock`
ci (stm32f722, stable): src/otg_hs.rs#L13
unused import: `RateExtU32`
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f722, stable)
`stm32f7xx-hal` (lib) generated 4 warnings (run `cargo fix --lib -p stm32f7xx-hal` to apply 2 suggestions)
ci (stm32f722, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f722, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f722, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f722, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f723, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f723, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f723, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f723, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f723, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f723, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f732, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f732, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f732, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f732, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f732, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f732, stable): src/otg_hs.rs#L12
unused import: `BusClock`
ci (stm32f732, stable): src/otg_hs.rs#L13
unused import: `RateExtU32`
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f732, stable)
`stm32f7xx-hal` (lib) generated 4 warnings (run `cargo fix --lib -p stm32f7xx-hal` to apply 2 suggestions)
ci (stm32f733, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f733, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f733, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f733, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f733, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f733, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f746, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f746, stable): src/otg_hs.rs#L12
unused import: `BusClock`
ci (stm32f746, stable): src/otg_hs.rs#L13
unused import: `RateExtU32`
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable)
`stm32f7xx-hal` (lib) generated 4 warnings (run `cargo fix --lib -p stm32f7xx-hal` to apply 2 suggestions)
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f746, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f746, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f746, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f746, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f746, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f779, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f779, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f779, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f779, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f779, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f779, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f767, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f767, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f767, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f767, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f767, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f767, stable): src/otg_hs.rs#L12
unused import: `BusClock`
ci (stm32f767, stable): src/otg_hs.rs#L13
unused import: `RateExtU32`
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable)
`stm32f7xx-hal` (lib) generated 6 warnings (run `cargo fix --lib -p stm32f7xx-hal` to apply 2 suggestions)
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable)
`stm32f7xx-hal` (lib) generated 4 warnings
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable)
`stm32f7xx-hal` (lib test) generated 4 warnings
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable)
`stm32f7xx-hal` (lib) generated 4 warnings
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f767, stable)
`stm32f7xx-hal` (lib) generated 4 warnings
ci (stm32f745, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f745, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f745, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f745, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f745, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f745, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f756, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f756, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f756, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f756, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f756, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f756, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f777, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f777, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f777, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f777, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f777, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f777, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f769, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable)
`stm32f7xx-hal` (lib) generated 4 warnings
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable)
`stm32f7xx-hal` (lib) generated 4 warnings
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable)
`stm32f7xx-hal` (lib) generated 4 warnings
ci (stm32f769, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f769, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f769, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f769, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable)
`stm32f7xx-hal` (lib test) generated 4 warnings
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable): src/qei.rs#L144
unnecessary `unsafe` block
ci (stm32f769, stable)
`stm32f7xx-hal` (lib) generated 4 warnings
ci (nightly, stm32f746, true)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (nightly, stm32f746, true)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (nightly, stm32f746, true)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (nightly, stm32f746, true)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (nightly, stm32f746, true)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (nightly, stm32f746, true): src/otg_hs.rs#L12
unused import: `BusClock`
ci (nightly, stm32f746, true): src/otg_hs.rs#L13
unused import: `RateExtU32`
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true)
`stm32f7xx-hal` (lib) generated 4 warnings (run `cargo fix --lib -p stm32f7xx-hal` to apply 2 suggestions)
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true): src/timer.rs#L535
unnecessary `unsafe` block
ci (nightly, stm32f746, true)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f765, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f765, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f765, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f765, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f765, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f765, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f778, stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f778, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f778, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f778, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f778, stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable)
`stm32f7xx-hal` (lib test) generated 2 warnings
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable)
`stm32f7xx-hal` (lib) generated 2 warnings
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable): src/timer.rs#L535
unnecessary `unsafe` block
ci (stm32f778, stable)
`stm32f7xx-hal` (lib) generated 2 warnings