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 
10 enum talker_function_state {
11 	talker_idle,
12 	talker_addressed,
13 	talker_active,
14 	serial_poll_active
15 };
16 
17 enum listener_function_state {
18 	listener_idle,
19 	listener_addressed,
20 	listener_active
21 };
22 
23 #endif	// _GPIB_STATE_MACHINES_H
24