Interrupt Controller (NVIC)
13.2.1.5 ROM_IntMasterEnable
Enables the processor interrupt.
Prototype:
bool
ROM_IntMasterEnable(void)
ROM Location:
ROM_APITABLE
is an array of pointers located at
0x0100.0010
.
ROM_INTERRUPTTABLE
is an array of pointers located at
ROM_APITABLE[14]
.
ROM_IntMasterEnable
is a function pointer located at
ROM_INTERRUPTTABLE[1]
.
Description:
Allows the processor to respond to interrupts. This does not affect the set of interrupts enabled
in the interrupt controller; it just gates the single interrupt from the controller to the processor.
Returns:
Returns
true
if interrupts were disabled when the function was called or
false
if they were
initially enabled.
13.2.1.6 ROM_IntPendClear
Unpends an interrupt.
Prototype:
void
ROM_IntPendClear(uint32_t ui32Interrupt)
ROM Location:
ROM_APITABLE
is an array of pointers located at
0x0100.0010
.
ROM_INTERRUPTTABLE
is an array of pointers located at
ROM_APITABLE[14]
.
ROM_IntPendClear
is a function pointer located at
ROM_INTERRUPTTABLE[9]
.
Parameters:
ui32Interrupt
specifies the interrupt to be unpended.
Description:
The specified interrupt is unpended in the interrupt controller. This will cause any previously
generated interrupts that have not been handled yet (due to higher priority interrupts or the
interrupt no having been enabled yet) to be discarded.
Returns:
None.
13.2.1.7 ROM_IntPendSet
Pends an interrupt.
Prototype:
void
ROM_IntPendSet(uint32_t ui32Interrupt)
140
April 8, 2013
Summary of Contents for Tiva TM4C123GH6PM
Page 26: ...Boot Loader 26 April 8 2013...
Page 68: ...Controller Area Network CAN 68 April 8 2013...
Page 122: ...Hibernation Module 122 April 8 2013...
Page 136: ...Inter Integrated Circuit I2C 136 April 8 2013...
Page 152: ...Memory Protection Unit MPU 152 April 8 2013...
Page 174: ...Pulse Width Modulator PWM Returns None 174 April 8 2013...
Page 196: ...Synchronous Serial Interface SSI 196 April 8 2013...
Page 222: ...System Control 222 April 8 2013...
Page 270: ...UART 270 April 8 2013...
Page 296: ...uDMA Controller 296 April 8 2013...
Page 351: ...April 8 2013 351...