1.1.4.6 void GPIO_PinGroupOutputEnable(GPIO_PIN pin) Function

C

void GPIO_PinGroupOutputEnable(GPIO_PIN pin)

Summary

Enables 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 enables control of the GPIO pin using the grouped GPIO output register.

Precondition

None.

Parameters

Param Description
pin One of the GPIO pins from the enum GPIO_PIN

Returns

None

Example

GPIO_PinGroupOutputEnable(GPIO_PIN_GPIO012);

Remarks

None