![]() |
ARMEBS4
revision-26.06.2015
|
NVIC Init Structure definition. More...
#include "C:/Programs/ARMEBS4/current/doc/eclipse-doc/ext/libheivs_stm32/include/stm32/stm32f4xx_misc.h"
Data Fields | |
uint8_t | NVIC_IRQChannel |
uint8_t | NVIC_IRQChannelPreemptionPriority |
uint8_t | NVIC_IRQChannelSubPriority |
FunctionalState | NVIC_IRQChannelCmd |
NVIC Init Structure definition.
Definition at line 48 of file stm32f4xx_misc.h.
uint8_t NVIC_InitTypeDef::NVIC_IRQChannel |
Specifies the IRQ channel to be enabled or disabled. This parameter can be an enumerator of IRQn_Type enumeration (For the complete STM32 Devices IRQ Channels list, please refer to stm32f4xx.h file)
Definition at line 50 of file stm32f4xx_misc.h.
Referenced by camera_init(), and gpio_irq_setup().
uint8_t NVIC_InitTypeDef::NVIC_IRQChannelPreemptionPriority |
Specifies the pre-emption priority for the IRQ channel specified in NVIC_IRQChannel. This parameter can be a value between 0 and 15 as described in the table MISC_NVIC_Priority_Table A lower priority value indicates a higher priority
Definition at line 55 of file stm32f4xx_misc.h.
Referenced by camera_init(), and gpio_irq_setup().
uint8_t NVIC_InitTypeDef::NVIC_IRQChannelSubPriority |
Specifies the subpriority level for the IRQ channel specified in NVIC_IRQChannel. This parameter can be a value between 0 and 15 as described in the table MISC_NVIC_Priority_Table A lower priority value indicates a higher priority
Definition at line 60 of file stm32f4xx_misc.h.
Referenced by camera_init(), and gpio_irq_setup().
FunctionalState NVIC_InitTypeDef::NVIC_IRQChannelCmd |
Specifies whether the IRQ channel defined in NVIC_IRQChannel will be enabled or disabled. This parameter can be set either to ENABLE or DISABLE
Definition at line 65 of file stm32f4xx_misc.h.
Referenced by camera_init(), and gpio_irq_setup().