2.49.45 GPIO_GroupPinToggle Function

C

void GPIO_GroupPinToggle(GPIO_PIN pin)

Summary

Toggles 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 toggle the output value of the given pin using the Group output register.

Precondition

None

Parameters

ParamDescription
pinOne of the GPIO pins from the enum GPIO_PIN

Returns

None

Example

GPIO_GroupPinToggle(GPIO_PIN_GPIO012);

Remarks

None