1.25.10.15 PIO_PinToggle Function

C

void PIO_PinToggle(PIO_PIN pin)

Summary

Toggles the selected pin.

Description

This function toggles/inverts the value on the selected I/O line/pin.

Precondition

PIO_Initialize() must have been called.

Parameters

Param Description
pin One of the IO pins from the enum PIO_PIN

Returns

None.

Example

PIO_PinToggle(PIO_PIN_PB3);

Remarks

None.