-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ogma-cli: Add a float and a double input variable to ROS example. Refs …
…#138. This commit modifies an example to use also an input variable of type float and one of type double, both of which were failing in the ROS backend. The example in question is currently being used by a CI script to test the ROS backend, making the new example serve as a regression test.
- Loading branch information
1 parent
87bd5e8
commit 554518f
Showing
3 changed files
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
input_signal | ||
input_signal_float | ||
input_signal_double |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
("input_signal","int64_t","/demo/topic","int64_t") | ||
("input_signal_float","float","/demo/topicf","float") | ||
("input_signal_double","double","/demo/topicd","double") |