-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected configuration error checkings.
- Loading branch information
Rafael Saback
committed
Oct 7, 2015
1 parent
33aaa9a
commit ff979ee
Showing
5 changed files
with
318 additions
and
71 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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- name:default | ||
# If left empty, uses RAW by default | ||
control_modes: [RAW, RAW] | ||
# Convert thruster signal into forces, in negative direction or CCW. | ||
# Should have a size equal to the number of actuators | ||
# Thruster[N] = Coeff * rotation * |rotation| | ||
thruster_coeff_neg: | ||
data: [8, 8] | ||
# Convert thruster signal into forces, in positive direction or CW. | ||
# Should have a size equal to the number of actuators | ||
# Thruster[N] = Coeff * rotation * |rotation| | ||
thruster_coeff_pos: | ||
data: [10, 10] | ||
# In case the control_modes is RAW (pwm), used to convert the signal into DC Voltage | ||
# Thruster[N] = Coeff * voltage * |voltage| | ||
thruster_voltage: 19 | ||
|
||
--- name:control_mode_3_raw | ||
control_modes: [RAW, RAW, RAW] | ||
|
||
--- name:thruster_coeff_pos_size_3 | ||
thruster_coeff_pos: | ||
data: [10, 10, 10] | ||
|
||
--- name:control_modes_effort | ||
# If left empty, uses RAW by default | ||
control_modes: [EFFORT, EFFORT] | ||
|
||
--- name:control_modes_speed | ||
# If left empty, uses RAW by default | ||
control_modes: [SPEED, SPEED] |
Oops, something went wrong.