22 lines
618 B
C#
22 lines
618 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LibrarySDR.Enums
|
|
{
|
|
public enum PDUTypeExtension
|
|
{
|
|
BASIC_LOCATION_PARAM_REQ_REP = 0x05, //0101,
|
|
ADD_MODIFY_TRIGGER_REQ_REP = 0x06, //0110,
|
|
REMOVE_TRIGGER_REQ_REP = 0x07, //0111,
|
|
IMMEDIATE_LOCATION_REQ_REP = 0x01, // 0001
|
|
LONG_LOCATION_REPORT = 0x03, // 0011
|
|
LONG_LOCATION_ACK = 0x4, //0100
|
|
LOCATION_REPORTING_ENABLE_DISABLE = 0x0A, // 1010
|
|
RESERVED0000 = 0x00, // 0000
|
|
RESERVED0010 = 0x02 // 0010
|
|
}
|
|
}
|