nrf52840/peripheral_interrupts.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//! Interrupt numbers for nRF52840 peripherals
6
7pub const USBD: u32 = 39;
8#[allow(dead_code)]
9pub const UART1: u32 = 40;
10#[allow(dead_code)]
11pub const QSPI: u32 = 41;
12#[allow(dead_code)]
13pub const CRYPTOCELL: u32 = 42;
14#[allow(dead_code)]
15pub const PWM3: u32 = 45;
16#[allow(dead_code)]
17pub const SPIM3: u32 = 47;