Skip to content

Commit a4ba10a

Browse files
SakodaShintaroshmpwk
authored andcommitted
fix(pose_instability_detector): changed the interval_sec value of pose_instability_detector (autowarefoundation#6416)
* Changed the interval_sec value of pose_instability_detector Signed-off-by: Shintaro Sakoda <shintaro.sakoda@tier4.jp> * Fixed default value in json schema Signed-off-by: Shintaro Sakoda <shintaro.sakoda@tier4.jp> --------- Signed-off-by: Shintaro Sakoda <shintaro.sakoda@tier4.jp>
1 parent 9e9ed75 commit a4ba10a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

localization/pose_instability_detector/config/pose_instability_detector.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**:
22
ros__parameters:
3-
interval_sec: 1.0 # [sec]
3+
interval_sec: 0.5 # [sec]
44
threshold_diff_position_x: 1.0 # [m]
55
threshold_diff_position_y: 1.0 # [m]
66
threshold_diff_position_z: 1.0 # [m]

localization/pose_instability_detector/schema/pose_instability_detector.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"properties": {
99
"interval_sec": {
1010
"type": "number",
11-
"default": 1.0,
11+
"default": 0.5,
1212
"exclusiveMinimum": 0,
1313
"description": "The interval of timer_callback in seconds."
1414
},

0 commit comments

Comments
 (0)