1.1.4.7 void GPIO_PinGroupOutputDisable(GPIO_PIN pin) Function
C
void GPIO_PinGroupOutputDisable(GPIO_PIN pin)
Summary
Disables the group output of the given GPIO pin
Description
Every GPIO has two mechanisms to set a GPIO data output - either using the grouped GPIO output register or using the single GPIO output data bit located in the Pin Control register. This API disables control of the GPIO pin using the grouped GPIO output register (and hence enables control using the Pin Control register)
Precondition
None.
Parameters
Param | Description |
---|---|
pin | One of the GPIO pins from the enum GPIO_PIN |
Returns
None
Example
GPIO_PinGroupOutputDisable(GPIO_PIN_GPIO012);
Remarks
None