1.6.13.11 1.7.14.11 1.10.11.11 1.11.11.11 1.12.11.11 1.13.10.11 1.14.10.11 1.15.10.11 1.16.8.11 1.17.8.11 1.18.9.11 1.19.8.11 1.22.13.11 1.23.12.11 1.24.9.11 GPIO_PortInterruptDisable Function
C
void GPIO_PortInterruptDisable(GPIO_PORT port, uint32_t mask)
Summary
Disables IO interrupt on selected IO pins of a port.
Description
This function disables IO interrupt on selected IO pins of selected port.
Precondition
Corresponding pins must be configured in interrupt mode in MHC Pin Manager. GPIO_Initialize() must have been called.
Parameters
Param | Description |
---|---|
port | One of the IO ports from the enum GPIO_PORT |
mask | Is a 32 bit value in which positions of 0s and 1s decide which IO pins of the selected port will have interrupt disabled. |
-
The bit positions of mask value which are set as 1, IO interrupt of corresponding IO pin of the selected port will be disabled.
-
The bit positions of mask value which are cleared to 0, IO interrupt of corresponding IO pin of the selected port will remain unchanged.
Returns
None.
Example
// Disable IO interrupt for RB9 and RB1 pins GPIO_PortInterruptDisable(GPIO_PORT_C, 0x0202);
Remarks
None.