Added groupcall to compound parsing.
This commit is contained in:
parent
9cd17a4441
commit
e27e7baec9
@ -1507,6 +1507,7 @@ QStringList Varicode::buildMessageFrames(
|
|||||||
|
|
||||||
bool lineStartsWithBaseCall = (
|
bool lineStartsWithBaseCall = (
|
||||||
line.startsWith("ALLCALL") ||
|
line.startsWith("ALLCALL") ||
|
||||||
|
line.startsWith("GROUPCALL") ||
|
||||||
line.startsWith("BEACON") ||
|
line.startsWith("BEACON") ||
|
||||||
Varicode::startsWithCQ(line)
|
Varicode::startsWithCQ(line)
|
||||||
);
|
);
|
||||||
@ -1550,6 +1551,9 @@ QStringList Varicode::buildMessageFrames(
|
|||||||
QString dirNum;
|
QString dirNum;
|
||||||
QString dirFrame = Varicode::packDirectedMessage(line, basecall, &dirTo, &dirCmd, &dirNum, &n);
|
QString dirFrame = Varicode::packDirectedMessage(line, basecall, &dirTo, &dirCmd, &dirNum, &n);
|
||||||
bool dirToCompound = dirTo.contains("/");
|
bool dirToCompound = dirTo.contains("/");
|
||||||
|
if(dirToCompound){
|
||||||
|
qDebug() << "directed message to field is compound" << dirTo;
|
||||||
|
}
|
||||||
|
|
||||||
int m = 0;
|
int m = 0;
|
||||||
QString datFrame = Varicode::packDataMessage(line, &m);
|
QString datFrame = Varicode::packDataMessage(line, &m);
|
||||||
|
Loading…
Reference in New Issue
Block a user