Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WriteEndpointID.cs « Main « LibWinUsb - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: feac1142e2479046a98b25649049c489972106da (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Copyright © 2006-2010 Travis Robinson. All rights reserved.
// 
// website: http://sourceforge.net/projects/libusbdotnet
// e-mail:  libusbdotnet@gmail.com
// 
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2 of the License, or 
// (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful, but 
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for more details.
// 
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. or 
// visit www.gnu.org.
// 
// 
namespace LibUsbDotNet.Main
{
    /// <summary> Availabled endpoint numbers/ids for writing.
    /// </summary> 
    public enum WriteEndpointID : byte
    {
        /// <summary>
        /// Endpoint 1
        /// </summary>
        Ep01 = 0x01,
        /// <summary>
        /// Endpoint 2
        /// </summary>
        Ep02 = 0x02,
        /// <summary>
        /// Endpoint 3
        /// </summary>
        Ep03 = 0x03,
        /// <summary>
        /// Endpoint 4
        /// </summary>
        Ep04 = 0x04,
        /// <summary>
        /// Endpoint 5
        /// </summary>
        Ep05 = 0x05,
        /// <summary>
        /// Endpoint 6
        /// </summary>
        Ep06 = 0x06,
        /// <summary>
        /// Endpoint 7
        /// </summary>
        Ep07 = 0x07,
        /// <summary>
        /// Endpoint 8
        /// </summary>
        Ep08 = 0x08,
        /// <summary>
        /// Endpoint 9
        /// </summary>
        Ep09 = 0x09,
        /// <summary>
        /// Endpoint 10
        /// </summary>
        Ep10 = 0x0A,
        /// <summary>
        /// Endpoint 11
        /// </summary>
        Ep11 = 0x0B,
        /// <summary>
        /// Endpoint 12
        /// </summary>
        Ep12 = 0x0C,
        /// <summary>
        /// Endpoint 13
        /// </summary>
        Ep13 = 0x0D,
        /// <summary>
        /// Endpoint 14
        /// </summary>
        Ep14 = 0x0E,
        /// <summary>
        /// Endpoint 15
        /// </summary>
        Ep15 = 0x0F,
    }
}