Lines Matching +full:no +full:- +full:enum
2 * Copyright (c) 2016-2017, Texas Instruments Incorporated
4 * SPDX-License-Identifier: Apache-2.0
16 * CMSIS IRQn_Type enum is broken relative to ARM GNU compiler.
18 * So redefine the IRQn_Type enum to a unsigned int to avoid
20 * into negative IRQ values, which causes hard-to-debug Hard Faults.
25 typedef enum {
26 Reset_IRQn = -15,
27 NonMaskableInt_IRQn = -14,
28 HardFault_IRQn = -13,
29 MemoryManagement_IRQn = -12,
30 BusFault_IRQn = -11,
31 UsageFault_IRQn = -10,
32 SVCall_IRQn = -5,
33 DebugMonitor_IRQn = -4,
34 PendSV_IRQn = -2,
35 SysTick_IRQn = -1,
39 #define __MPU_PRESENT 0 /* Zephyr has no MPU support */