fermentord/vendor/github.com/warthog618/go-gpiocdev/uapi/eventdata_386.go

23 lines
515 B
Go
Raw Normal View History

/// SPDX-FileCopyrightText: 2020 Kent Gibson <warthog618@gmail.com>
//
// SPDX-License-Identifier: MIT
//go:build linux
// +build linux
2024-06-15 13:58:47 +00:00
// Package uapi provides the Linux GPIO UAPI definitions for gpiocdev.
package uapi
// EventData contains the details of a particular line event.
//
// This is returned via the event request fd in response to events.
type EventData struct {
// The time the event was detected.
Timestamp uint64
// The type of event detected.
ID EventFlag
// No pad required for i386.
}