gpib_state_machines.h 540 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /***************************************************************************
  3. * copyright : (C) 2006 by Frank Mori Hess
  4. ***************************************************************************/
  5. #ifndef _GPIB_STATE_MACHINES_H
  6. #define _GPIB_STATE_MACHINES_H
  7. enum talker_function_state {
  8. talker_idle,
  9. talker_addressed,
  10. talker_active,
  11. serial_poll_active
  12. };
  13. enum listener_function_state {
  14. listener_idle,
  15. listener_addressed,
  16. listener_active
  17. };
  18. #endif // _GPIB_STATE_MACHINES_H