-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate stamp and control_time, fill in README.md
Signed-off-by: M. Fatih Cırıt <mfc@leodrive.ai>
- Loading branch information
M. Fatih Cırıt
committed
Jun 6, 2022
1 parent
8c5e4f5
commit 35dbbe8
Showing
5 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,6 +1,13 @@ | ||
# Control message with lateral and longitudinal components | ||
|
||
# Time this message was created | ||
builtin_interfaces/Time stamp | ||
|
||
# Time this configuration state is expected to be achieved in (optional) | ||
builtin_interfaces/Time control_time | ||
|
||
# Lateral control command | ||
Lateral lateral | ||
|
||
# Longitudinal control command | ||
Longitudinal longitudinal |
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 |
---|---|---|
@@ -1,13 +1,18 @@ | ||
# Control messages predicted for a future horizon | ||
# Control messages calculated for a future horizon | ||
# | ||
# Control messages are ordered from near to far future [0 to N) with time_step_ms increments. | ||
# | ||
# First element of the array contains the control signals at the stamp of this message. | ||
# First element of the array contains the control signals at the control_time of this message. | ||
# | ||
# The stamps in the controls array can be ignored. | ||
# The control_time field in each element of the controls array can be ignored. | ||
|
||
# Time this message was created | ||
builtin_interfaces/Time stamp | ||
|
||
# Time when controls[0] configuration state is expected to be achieved in | ||
builtin_interfaces/Time control_time | ||
|
||
# Time difference between consecutive elements of the controls array in milliseconds | ||
float32 time_step_ms | ||
|
||
Control[] controls |
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
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