-
Notifications
You must be signed in to change notification settings - Fork 55
Added the ability to explicitly set type names and some QoS settings #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
lreiher
merged 16 commits into
ika-rwth-aachen:main
from
Chance-Maritime-Technologies:dev-explicitTypes
May 29, 2024
Merged
Changes from 6 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
8ed75d1
Added the ability to explicitly set type names and some QoS settings …
JayHerpin 4e5b854
Automatically deduce QOS paramters for subscriptions based on publica…
JayHerpin 49ced1d
Changed bool formatting for output to be 1 and 0
JayHerpin 0bd52b2
Allow auto or explicit selection of ros2mqtt subscriber QoS
JayHerpin 0f5ec67
Make fixed type publishers ahead of time
JayHerpin 41cba10
Misc minor formatting fixes
JayHerpin 7d8a136
Apply suggestions from code review
JayHerpin d4803df
Merge remote-tracking branch 'upstream/main' into dev-explicitTypes
JayHerpin 1e4d1e8
Renaming new example config file to be more descriptive
JayHerpin d90cf4b
Removing erroneous "not implemented" documentation
JayHerpin e30fa1a
Implemented primitive conversions for floating point values
JayHerpin 6bb674f
Minor refactor to reduce the number of lines of code
JayHerpin d6a8d79
Aligning the parameter descriptions with what is in the README file
JayHerpin 8a6bd37
Allowing non-primitive with fixed types
JayHerpin 74d64ee
Removing hack altering bool encodings when in "fixed type" mode
JayHerpin 1e0af0a
Resolving issued with explicit QoS for the ros2mqtt ros subscribers
JayHerpin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,34 @@ | ||
/**/*: | ||
ros__parameters: | ||
broker: | ||
host: localhost | ||
port: 1883 | ||
bridge: | ||
ros2mqtt: | ||
ros_topics: | ||
- /ping/primitive | ||
/ping/primitive: | ||
mqtt_topic: pingpong/primitive | ||
# This is implied by the explicit ros type | ||
#primitive: true | ||
ros_type: std_msgs/msg/Bool | ||
lreiher marked this conversation as resolved.
Show resolved
Hide resolved
|
||
advanced: | ||
ros: | ||
queue_size: 10 | ||
qos: | ||
durability: auto | ||
reliability: auto | ||
mqtt2ros: | ||
mqtt_topics: | ||
- pingpong/primitive | ||
pingpong/primitive: | ||
ros_topic: /pong/primitive | ||
#This is implied by the explicit ros type | ||
#primitive: true | ||
ros_type: std_msgs/msg/Bool | ||
advanced: | ||
ros: | ||
queue_size: 10 | ||
qos: | ||
durability: transient_local | ||
reliability: reliable |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.