1 //
2 // Copyright (c) 2010-2018 Antmicro
3 //
4 //  This file is licensed under the MIT License.
5 //  Full license text is available in 'licenses/MIT.txt'.
6 //
7 namespace Antmicro.Renode.Core.USB
8 {
9     public enum StandardRequest
10     {
11         GetStatus = 0,
12         ClearFeature = 1,
13         // value 2 reserved for the future use
14         SetFeature = 3,
15         // value 4 reserved for the future use
16         SetAddress = 5,
17         GetDescriptor = 6,
18         SetDescriptor = 7,
19         GetConfiguration = 8,
20         SetConfiguration = 9,
21         GetInterface = 10,
22         SetInterface = 11,
23         SynchronizeFrame = 12
24     }
25 }