Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at nocache-cleanup 23 lines 540 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3/*************************************************************************** 4 * copyright : (C) 2006 by Frank Mori Hess 5 ***************************************************************************/ 6 7#ifndef _GPIB_STATE_MACHINES_H 8#define _GPIB_STATE_MACHINES_H 9 10enum talker_function_state { 11 talker_idle, 12 talker_addressed, 13 talker_active, 14 serial_poll_active 15}; 16 17enum listener_function_state { 18 listener_idle, 19 listener_addressed, 20 listener_active 21}; 22 23#endif // _GPIB_STATE_MACHINES_H