2.49.43 GPIO_GroupPinSet Function

C

void GPIO_GroupPinSet(GPIO_PIN pin)

Summary

Sets 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 1 using the Group output register.

Precondition

None

Parameters

ParamDescription
pinOne of the GPIO pins from the enum GPIO_PIN

Returns

None

Example

GPIO_GroupPinSet(GPIO_PIN_GPIO012);

Remarks

None