-
Notifications
You must be signed in to change notification settings - Fork 678
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: karishma <[email protected]>
- Loading branch information
1 parent
8e209a1
commit 2237975
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
system/mrm_emergency_stop_operator/schema/mrm_emergency_stop_operator.json
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,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": ["/**"] | ||
} |