-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathBaudRate.cs
56 lines (47 loc) · 1.05 KB
/
BaudRate.cs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.Pn532
{
/// <summary>
/// Serial port baud rates
/// </summary>
public enum BaudRate
{
/// <summary>
/// 9600
/// </summary>
B0009600 = 0x00,
/// <summary>
/// 19200
/// </summary>
B0019200 = 0x01,
/// <summary>
/// 38400
/// </summary>
B0038400 = 0x02,
/// <summary>
/// 57600
/// </summary>
B0057600 = 0x03,
/// <summary>
/// 115200
/// </summary>
B0115200 = 0x04,
/// <summary>
/// 230400
/// </summary>
B0230400 = 0x05,
/// <summary>
/// 460800
/// </summary>
B0460800 = 0x06,
/// <summary>
/// 921600
/// </summary>
B0921600 = 0x07,
/// <summary>
/// 1288000
/// </summary>
B1288000 = 0x08
}
}