Rename JS8CallExtended to JS8CallFlag

This commit is contained in:
Jordan Sherer 2018-11-21 22:30:04 -05:00
parent 223a4a2183
commit 9079d45587
2 changed files with 2 additions and 2 deletions

View File

@ -9019,7 +9019,7 @@ void MainWindow::processCompoundActivity() {
bits == Varicode::JS8Call || bits == Varicode::JS8Call ||
((bits & Varicode::JS8CallFirst) == Varicode::JS8CallFirst) || ((bits & Varicode::JS8CallFirst) == Varicode::JS8CallFirst) ||
((bits & Varicode::JS8CallLast) == Varicode::JS8CallLast) || ((bits & Varicode::JS8CallLast) == Varicode::JS8CallLast) ||
((bits & Varicode::JS8CallExtended) == Varicode::JS8CallExtended) ((bits & Varicode::JS8CallFlag) == Varicode::JS8CallFlag)
); );
if (!validBits) { if (!validBits) {
qDebug() << "-> buffer.cmd bits is invalid...skip"; qDebug() << "-> buffer.cmd bits is invalid...skip";

View File

@ -21,7 +21,7 @@ public:
JS8Call = 0, // [000] <- any other frame of the message JS8Call = 0, // [000] <- any other frame of the message
JS8CallFirst = 1, // [001] <- the first frame of a message JS8CallFirst = 1, // [001] <- the first frame of a message
JS8CallLast = 2, // [010] <- the last frame of a message JS8CallLast = 2, // [010] <- the last frame of a message
JS8CallExtended = 4, // [100] <- extended frame (no frame type header) JS8CallFlag = 4, // [100] <- flagged frame (no frame type header)
}; };
/* /*