Skip to content

Commit

Permalink
Disallow pixel service flag for blank sign messages
Browse files Browse the repository at this point in the history
Pixel service apparently assumed to always be
allowed for blank messages (from NTCIP 1203).
  • Loading branch information
DougLau committed Jan 30, 2025
1 parent 0d5ae93 commit fcb0de9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/us/mn/state/dot/tms/server/DMSImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -529,9 +529,8 @@ public SignMessage createMsgBlank(int src) {
src |= SignMsgSource.blank.bit();
String owner = SignMessageHelper.makeMsgOwner(src);
SignMsgPriority mp = SignMsgPriority.low_1;
// Allow pixel service during blank messages
return SignMessageImpl.findOrCreate(sign_config, null, "",
owner, false, true, mp, null);
owner, false, false, mp, null);
}

/** Create a message for the sign.
Expand Down

0 comments on commit fcb0de9

Please sign in to comment.