1.1.4.18 void GPIO_GroupPinClear(GPIO_PIN pin) Function
C
void GPIO_GroupPinClear(GPIO_PIN pin)
Summary
Clears the value of the given pin in the Group output register.
Description
If the output control of the GPIO pin is enabled via Group output register, then this API lets application set the output value of the given pin to 0 using the Group output register.
Precondition
None
Parameters
Param | Description |
---|---|
pin | One of the GPIO pins from the enum GPIO_PIN |
Returns
None
Example
GPIO_GroupPinClear(GPIO_PIN_GPIO012);
Remarks
None