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.Peripherals.Wireless.CC2538 8 { 9 internal enum InterruptSource 10 { 11 StartOfFrameDelimiter, 12 FifoP, 13 SrcMatchDone, 14 SrcMatchFound, 15 FrameAccepted, 16 RxPktDone, 17 RxMaskZero, 18 19 TxAckDone, 20 TxDone, 21 RfIdle, 22 CommandStrobeProcessorManualInterrupt, 23 CommandStrobeProcessorStop, 24 CommandStrobeProcessorWait 25 } 26 } 27