Synopsis
typedef enum {
  PLATFORM_EDGE_FALLING,
  PLATFORM_EDGE_RISING,
  PLATFORM_EDGE_EITHER
} PLATFORM_EDGE_t;
Description

PLATFORM_EDGE_t describes the required edge to trigger a pin hook.

Note

PLATFORM_EDGE_EITHER is the inclusive-or of PLATFORM_EDGE_RISING and PLATFORM_EDGE_FALLING.

See Also

platform_hook_pin_edge