Skip to content

Commit

Permalink
system_mrm_emergency_stop_operator
Browse files Browse the repository at this point in the history
Signed-off-by: karishma <[email protected]>
  • Loading branch information
karishma1911 committed Nov 30, 2023
1 parent 8e209a1 commit 2237975
Showing 1 changed file with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameters for mrm_emergency_stop_operator",
"type": "object",
"definitions": {
"velodyne_monitor": {
"type": "object",
"properties": {
"update_rate": {
"type": "number",
"default": 30,
"description": "Timer callback frequency [Hz]."
},
"target_acceleration": {
"type": "number",
"default": -2.5,
"description": "Target acceleration for emergency stop [m/s^2]."
},
"target_jerk": {
"type": "number",
"default": -1.5,
"description": "Target jerk for emergency stop [m/s^3] ."
}
},
"required": ["update_rate", "target_jerk", "target_acceleration"]
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/mrm_emergency_stop_operator"
}
},
"required": ["ros__parameters"]
}
},
"required": ["/**"]
}

0 comments on commit 2237975

Please sign in to comment.