1 //
2 // Copyright (c) 2010-2020 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 USBClassCode : byte
10         {
11             NotSpecified = 0x0,
12             Audio = 0x1,
13             CommunicationsCDCControl = 0x2,
14             HumanInterfaceDevice = 0x3,
15             MassStorage = 0x8,
16             CDCData = 0xA,
17             VendorSpecific = 0xFF
18         }
19 }