blob: eade1deb6bbe3ca256616e7d488a857e47c7869f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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,
}
}
|