Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions schemas/applications/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Release Versions:
- [1-1-0](#1-1-0)
- [1-0-0](#1-0-0)

## Upcoming changes

- feat: add hardware plugin (#454)

## 2-1-0

This update adds variables and assignments to the application schema, which allow parameter values to be set and reused
Expand Down
8 changes: 8 additions & 0 deletions schemas/applications/schema/hardware.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@
}
]
},
"hardware_plugin_override": {
"description": "An optional override for the hardware plugin used in the URDF. If left empty, the hardware plugin in the URDF will be used.",
"type": "string",
"examples": [
"aica_core_interfaces/MockInterface",
"topic_based_ros2_control/TopicBasedSystem"
]
},
"rate": {
"description": "The rate in Hz at which to run the hardware interface",
"type": "number",
Expand Down