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 
8 namespace Antmicro.Renode.Peripherals.Wireless.IEEE802_15_4
9 {
10     public enum FrameType : byte
11     {
12         Beacon = 0x0,
13         Data = 0x1,
14         ACK = 0x2,
15         MACControl = 0x3,
16         Reserved4 = 0x4,
17         Reserved5 = 0x5,
18         Reserved6 = 0x6,
19         Reserved7 = 0x7
20     }
21 }
22 
23