forked from nanoframework/nanoFramework.IoT.Device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTxBufferAddressPointer.cs
41 lines (35 loc) · 1.02 KB
/
TxBufferAddressPointer.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
// 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.Mcp25xxx
{
/// <summary>
/// Address Pointer to one of six locations for the transmit buffer.
/// </summary>
public enum TxBufferAddressPointer
{
/// <summary>
/// TX Buffer 0 starting at TXB0SIDH (0x31).
/// </summary>
TxB0Sidh = 0,
/// <summary>
/// TX Buffer 0 starting at TXB0D0 (0x36).
/// </summary>
TxB0D0 = 1,
/// <summary>
/// TX Buffer 1 starting at TXB1SIDH (0x41).
/// </summary>
TxB1Sidh = 2,
/// <summary>
/// TX Buffer 1 starting at TXB1D0 (0x46).
/// </summary>
TxB1D0 = 3,
/// <summary>
/// TX Buffer 2 starting at TXB2SIDH (0x51).
/// </summary>
TxB2Sidh = 4,
/// <summary>
/// TX Buffer 2 starting at TXB2D0 (0x56).
/// </summary>
TxB2D0 = 5
}
}