Skip to content

Commit

Permalink
chore(dummy_diag_publisher): update README and launch file (#536)
Browse files Browse the repository at this point in the history
* chore: update README

* feat: add param in launch

* chore: Update system/dummy_diag_publisher/README.md

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* chore: update readme

* ci(pre-commit): autofix

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Mar 17, 2022
1 parent 64ebf7c commit 99f7be2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 6 additions & 5 deletions system/dummy_diag_publisher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ This package outputs a dummy diagnostic data for debugging and developing.

### Node Parameters

| Name | Type | Default Value | Explanation |
| ------------- | ------ | ------------- | ------------------------------------- |
| `update_rate` | int | `10` | Timer callback period [Hz] |
| `diag_name` | string | `diag_name` | Diag_name set by dummy diag publisher |
| `is_active` | bool | `true` | Force update or not |
| Name | Type | Default Value | Explanation | Reconfigurable |
| ------------- | ------------------------------ | ------------- | --------------------------------------- | -------------- |
| `update_rate` | int | `10` | Timer callback period [Hz] | false |
| `diag_name` | string | `diag_name` | Diag_name set by dummy diag publisher | false |
| `is_active` | bool | `true` | Force update or not | true |
| `status` | DummyDiagPublisherNode::Status | `0 (OK)` | diag status set by dummy diag publisher | true |

## Assumptions / Known limits

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<arg name="diag_name" />
<arg name="update_rate" default="10.0" />
<arg name="is_active" default="true" />
<arg name="status" default="0" />

<group>
<push-ros-namespace namespace="dummy_diag_publisher"/>
Expand All @@ -10,6 +11,7 @@
<param name="diag_name" value="$(var diag_name)" />
<param name="update_rate" value="$(var update_rate)" />
<param name="is_active" value="$(var is_active)" />
<param name="status" value="$(var status)" />
</node>
</group>
</launch>

0 comments on commit 99f7be2

Please sign in to comment.