-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent echo of binary data when reset() is not called on a signal.
Signed-off-by: Rule Timothy (VM/EMT3) <[email protected]>
- Loading branch information
1 parent
4dc119b
commit c8dd592
Showing
11 changed files
with
167 additions
and
3 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Copyright 2024 Robert Bosch GmbH | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
--- | ||
kind: Stack | ||
metadata: | ||
name: binary_stack | ||
spec: | ||
connection: | ||
transport: | ||
redispubsub: | ||
uri: redis://localhost:6379 | ||
timeout: 60 | ||
models: | ||
- name: simbus | ||
model: | ||
name: simbus | ||
channels: | ||
- name: scalar_channel | ||
expectedModelCount: 1 | ||
- name: binary_channel | ||
expectedModelCount: 1 | ||
- name: binary_inst | ||
uid: 42 | ||
model: | ||
name: Binary | ||
channels: | ||
- name: scalar_channel | ||
alias: scalar | ||
- name: binary_channel | ||
alias: binary | ||
--- | ||
kind: Model | ||
metadata: | ||
name: simbus | ||
--- | ||
kind: SignalGroup | ||
metadata: | ||
name: scalar_channel | ||
labels: | ||
channel: scalar_channel | ||
spec: | ||
signals: | ||
- signal: counter | ||
--- | ||
kind: SignalGroup | ||
metadata: | ||
name: binary_channel | ||
labels: | ||
channel: binary_channel | ||
annotations: | ||
vector_type: binary | ||
spec: | ||
signals: | ||
- signal: message | ||
annotations: | ||
mime_type: 'application/octet-stream' | ||
- signal: not_used | ||
annotations: | ||
mime_type: 'application/octet-stream' | ||
|
||
|
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