SafeDispatch/LibrarySDR/Enums/ShortFormReportStatus.cs

17 lines
347 B
C#
Raw Normal View History

2024-02-22 16:43:59 +00:00
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
}
}