IBaudRate.cs 683 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TeamAAS.Communication.Interfaces
  7. {
  8. public enum BaudRates : int
  9. {
  10. BR_75 = 75,
  11. BR_110 = 110,
  12. BR_150 = 150,
  13. BR_300 = 300,
  14. BR_600 = 600,
  15. BR_1200 = 1200,
  16. BR_2400 = 2400,
  17. BR_4800 = 4800,
  18. BR_9600 = 9600,
  19. BR_14400 = 14400,
  20. BR_19200 = 19200,
  21. BR_28800 = 28800,
  22. BR_38400 = 38400,
  23. BR_56000 = 56000,
  24. BR_57600 = 57600,
  25. BR_115200 = 115200,
  26. BR_128000 = 128000,
  27. BR_230400 = 230400,
  28. BR_256000 = 256000
  29. }
  30. }