21 lines
448 B
C#
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
|
|||
|
}
|
|||
|
}
|