17 lines
347 B
C#
17 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LibrarySDR.Enums
|
|
{
|
|
public enum ShortFormReportStatus
|
|
{
|
|
ProtocolEncodingNotSupported = 0x7C,
|
|
DestinationMemoryFull = 0x7D,
|
|
MessageReceived = 0x7E,
|
|
MessageConsumed = 0x7F
|
|
}
|
|
}
|