|
| 1 | +/* |
| 2 | + * ***************************************************************************** |
| 3 | + * Copyright (C) 2014-2024 Dennis Sheirer |
| 4 | + * |
| 5 | + * This program is free software: you can redistribute it and/or modify |
| 6 | + * it under the terms of the GNU General Public License as published by |
| 7 | + * the Free Software Foundation, either version 3 of the License, or |
| 8 | + * (at your option) any later version. |
| 9 | + * |
| 10 | + * This program is distributed in the hope that it will be useful, |
| 11 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | + * GNU General Public License for more details. |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License |
| 16 | + * along with this program. If not, see <http://www.gnu.org/licenses/> |
| 17 | + * **************************************************************************** |
| 18 | + */ |
| 19 | + |
1 | 20 | package io.github.dsheirer.module.decode.dmr.message.data.lc.full.motorola;
|
2 | 21 |
|
3 | 22 | import io.github.dsheirer.bits.CorrectedBinaryMessage;
|
|
6 | 25 | import io.github.dsheirer.identifier.talkgroup.TalkgroupIdentifier;
|
7 | 26 | import io.github.dsheirer.module.decode.dmr.identifier.DMRRadio;
|
8 | 27 | import io.github.dsheirer.module.decode.dmr.identifier.DMRTalkgroup;
|
9 |
| - |
10 | 28 | import java.util.ArrayList;
|
11 | 29 | import java.util.List;
|
12 | 30 |
|
|
15 | 33 | */
|
16 | 34 | public class CapacityMaxVoiceChannelUser extends CapacityPlusVoiceChannelUser
|
17 | 35 | {
|
18 |
| - private static final int[] TALKGROUP = new int[]{32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47}; |
| 36 | + private static final int[] TALKGROUP = new int[]{24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, |
| 37 | + 41, 42, 43, 44, 45, 46, 47}; |
19 | 38 | private static final int[] RADIO = new int[]{48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
|
20 | 39 | 66, 67, 68, 69, 70, 71};
|
21 | 40 |
|
|
0 commit comments