Update for new pac #1522
Annotations
3 errors
clippy_check
Clippy has exited with exit code 101
|
no variant or associated item named `DMA1_STR1` found for enum `stm32h7xx_hal::interrupt` in the current scope:
examples/spi-dma-rtic.rs#L142
error[E0599]: no variant or associated item named `DMA1_STR1` found for enum `stm32h7xx_hal::interrupt` in the current scope
--> examples/spi-dma-rtic.rs:142:18
|
142 | #[task(binds=DMA1_STR1, shared = [transfer, cs], priority=2)]
| ^^^^^^^^^
| |
| variant or associated item not found in `interrupt`
| help: there is a variant with a similar name: `DMA_STR1`
|
no variant or associated item named `DMA1_STR1` found for enum `stm32h7xx_hal::interrupt` in the current scope:
examples/spi-dma-rtic.rs#L142
error[E0599]: no variant or associated item named `DMA1_STR1` found for enum `stm32h7xx_hal::interrupt` in the current scope
--> examples/spi-dma-rtic.rs:142:18
|
26 | #[rtic::app(device = stm32h7xx_hal::stm32, peripherals = true)]
| ______________________-
27 | | mod app {
28 | | use hal::prelude::*;
29 | | use stm32h7xx_hal as hal;
... |
141 | |
142 | | #[task(binds=DMA1_STR1, shared = [transfer, cs], priority=2)]
| | -^^^^^^^^^
| | ||
| | |variant or associated item not found in `interrupt`
| |_________________|help: there is a variant with a similar name: `DMA_STR1`
|
|