blob: c92d0f13abfec738e8c0d74e77ceeba6e6303f0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Transport.Adapters
{
/// <summary>
/// Represents standard USB serial baud rates.
/// </summary>
public enum UsbSerialBaudRates
{
[Description("9600")]
BR_9600 = 9600,
[Description("19200")]
BR_19200 = 19200,
[Description("115200")]
BR_115200 = 115200,
[Description("1000000")]
BR_1000000 = 1000000,
[Description("2500000")]
BR_2500000 = 2500000,
[Description("4000000")]
BR_4000000 = 4000000,
[Description("5000000")]
BR_5000000 = 5000000,
}
}
|