-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2004 P25P1 Link Control Extended Source messages now process through…
… decoder state correctly and display in Now Playing.
- Loading branch information
Dennis Sheirer
committed
Oct 5, 2024
1 parent
c97e355
commit c1e817e
Showing
18 changed files
with
360 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
...n/java/io/github/dsheirer/module/decode/p25/phase1/message/lc/IExtendedSourceMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* ***************************************************************************** | ||
* Copyright (C) 2014-2024 Dennis Sheirer | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
* **************************************************************************** | ||
*/ | ||
|
||
package io.github.dsheirer.module.decode.p25.phase1.message.lc; | ||
|
||
import io.github.dsheirer.message.IMessage; | ||
import io.github.dsheirer.module.decode.p25.phase1.message.lc.standard.LCSourceIDExtension; | ||
|
||
/** | ||
* Interface to identify Link Control messages that can optionally be extended by appending source ID extension message. | ||
*/ | ||
public interface IExtendedSourceMessage extends IMessage | ||
{ | ||
/** | ||
* Sets or assigns the optional source ID extension message. | ||
* @param sourceIDExtension to append. | ||
*/ | ||
void setSourceIDExtension(LCSourceIDExtension sourceIDExtension); | ||
|
||
/** | ||
* Indicates if this message requires an optional source extension message. | ||
* @return true if required. | ||
*/ | ||
boolean isExtensionRequired(); | ||
|
||
/** | ||
* Indicates if this message requires an extended source and if that extended source is appended. | ||
* @return true if fully extended. | ||
*/ | ||
boolean isFullyExtended(); | ||
|
||
/** | ||
* Indicates if this link control message was carried by a TDULC terminator message. | ||
* @return true if terminator. | ||
*/ | ||
boolean isTerminator(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.