stm32f429zi/
stm32f429zi_nvic.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2022.
4
5//! Named constants for NVIC ids specific to this chip
6
7pub const ETH: u32 = 61;
8pub const ETH_WKUP: u32 = 62;
9pub const CRYP: u32 = 79;
10pub const HASH_RNG: u32 = 80;
11pub const UART7: u32 = 82;
12pub const UART8: u32 = 83;
13pub const SPI5: u32 = 85;
14pub const SPI6: u32 = 86;
15pub const LTDC: u32 = 88;
16pub const LTDCE: u32 = 89;
17pub const DMA2D: u32 = 90;