CARME-M4 BSP  V1.5
NVIC_InitTypeDef Struct Reference

NVIC Init Structure definition. More...

#include <misc.h>

Data Fields

uint8_t NVIC_IRQChannel
 
uint8_t NVIC_IRQChannelPreemptionPriority
 
uint8_t NVIC_IRQChannelSubPriority
 
FunctionalState NVIC_IRQChannelCmd
 

Detailed Description

NVIC Init Structure definition.

Examples:
usart_interrupt.c.

Definition at line 54 of file misc.h.

Field Documentation

uint8_t 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)

Examples:
usart_interrupt.c.

Definition at line 56 of file misc.h.

FunctionalState 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

Examples:
usart_interrupt.c.

Definition at line 71 of file misc.h.

uint8_t 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

Examples:
usart_interrupt.c.

Definition at line 61 of file misc.h.

uint8_t 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

Examples:
usart_interrupt.c.

Definition at line 66 of file misc.h.


The documentation for this struct was generated from the following file: