blob: d00bf5b74debcfdb5e438d71eaa72ca06108c2c4 [file] [log] [blame]
Harald Weltec1707042017-01-24 17:07:27 +01001/*
2 * (C) 2013-2017 by Harald Welte <laforge@gnumonks.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19#include <osmocom/core/utils.h>
20
21#include "protocol/diag_log_gprs_l1.h"
22
Vadim Yanitskiyaea8cb82021-11-19 16:58:43 +030023const struct value_string gprs_tx_ul_chans[] = {
Harald Weltec1707042017-01-24 17:07:27 +010024 { DIAG_TX_UL_CH_T_PRACH, "PRACK" },
25 { DIAG_TX_UL_CH_T_UL_PTCCH, "UL-PTCCH" },
26 { DIAG_TX_UL_CH_T_UL_PACCH_PDTCH, "UL-PACCH-PDTCH" },
27 { 0, NULL }
28};
29
Vadim Yanitskiyaea8cb82021-11-19 16:58:43 +030030const struct value_string gprs_coding_schemes[] = {
Harald Weltec1707042017-01-24 17:07:27 +010031 { DIAG_GPRS_CS_CS1, "CS1" },
32 { DIAG_GPRS_CS_CS2, "CS2" },
33 { DIAG_GPRS_CS_CS3, "CS3" },
34 { DIAG_GPRS_CS_CS4, "CS4" },
35 { DIAG_GPRS_CS_ACCESS, "ACCESS" },
36 { DIAG_GPRS_CS_EXT_ACCESS, "ACCESS-EXT" },
37 { DIAG_GPRS_CS_MCS1, "MCS1" },
38 { DIAG_GPRS_CS_MCS2, "MCS2" },
39 { DIAG_GPRS_CS_MCS3, "MCS3" },
40 { DIAG_GPRS_CS_MCS4, "MCS4" },
41 { DIAG_GPRS_CS_MCS5, "MCS5" },
42 { DIAG_GPRS_CS_MCS6, "MCS6" },
43 { DIAG_GPRS_CS_MCS7, "MCS7" },
44 { DIAG_GPRS_CS_MCS8, "MCS8" },
45 { DIAG_GPRS_CS_MCS9, "MCS9" },
46 { 0, NULL }
47};