SafeDispatch/LibrarySDR/Enums/ProtocolIdentifier.cs
2024-02-22 18:43:59 +02:00

21 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibrarySDR.Enums
{
public enum ProtocolIdentifier
{
Emergency = 0,
SimpleTextWithoutSDSTL = 2,
SimpleGPSWithoutSDSTL = 3,
SimpleImmediateText = 9,
SimpleTextUsingSDSTL = 130,
GPSUsingSDSTL = 131,
ImmediateTextUsingSDSTL = 137,
GPS = 0x0A
}
}