FACommunicationState.cs 370 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.InteropServices;
  5. using System.Text;
  6. namespace Aitex.Sorter.Common
  7. {
  8. public enum FACommunicationState
  9. {
  10. Disabled,
  11. Enabled,
  12. EnabledNotCommunicating,
  13. EnabledCommunicating,
  14. WaitCRA,
  15. WaitDelay,
  16. WaitCRFromHost,
  17. }
  18. }