/** * Digital Voice Modem - Fixed Network Equipment * AGPLv3 Open Source. Use is subject to license terms. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * @package DVM / Fixed Network Equipment * */ /* * Copyright (C) 2022 by Bryan Biedenkapp N2PLL * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. */ using System; namespace fnecore.DMR { /// /// DMR Data Types /// public enum DMRDataType : byte { /// /// Voice Privacy Indicator Header /// VOICE_PI_HEADER = 0x00, /// /// Voice Link Control Header /// VOICE_LC_HEADER = 0x01, /// /// Terminator with Link Control /// TERMINATOR_WITH_LC = 0x02, /// /// Control Signalling Block /// CSBK = 0x03, /// /// Data Header /// DATA_HEADER = 0x06, /// /// 1/2 Rate Data /// RATE_12_DATA = 0x07, /// /// 3/4 Rate Data /// RATE_34_DATA = 0x08, /// /// Idle Burst /// IDLE = 0x09, /// /// 1 Rate Data /// RATE_1_DATA = 0x0A, } // public enum DMRDataType : byte /// /// DMR Full-Link Opcodes /// public enum DMRFLCO : byte { /// /// GRP VCH USER - Group Voice Channel User /// FLCO_GROUP = 0x00, /// /// UU VCH USER - Unit-to-Unit Voice Channel User /// FLCO_PRIVATE = 0x01, } // public enum DMRFLCO : byte } // namespace fnecore.DMR