If a pending interrupt is enabled, the NVIC activates the interrupt based on its priority. If an interrupt is not enabled, asserting its interrupt signal changes the interrupt state to pending, but the NVIC never activates the interrupt, regardless of its priority.
You can read
this register and get nvic_iser::R
. You can reset
, write
, write_with_zero
this register using nvic_iser::W
. You can also modify
this register. See API.
reset()
method sets NVIC_ISER to value 0
write(|w| ..)
method takes nvic_iser::W
writer structure
1
and are changed if you pass 0
0
and are changed if you pass 1
read()
method returns nvic_iser::R
reader structure