-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
esc: clarify RPM/command direction meaning
Reverse should only be used for reverse thrust, not simply a motor that happens to be spinning counter-clockwise.
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# | ||
# Raw ESC command normalized into [-8192, 8191]; negative values indicate reverse rotation. | ||
# The ESC should normalize the setpoint into its effective input range. | ||
# Raw ESC command normalized into [-8192, 8191]. The ESC should normalize the setpoint into its effective input range. | ||
# Non-zero setpoint value below minimum should be interpreted as min valid setpoint for the given motor. | ||
# Positive values indicate forward rotation, negative values indicate reverse rotation, and zero indicates no rotation. | ||
# Forward rotation shall be the direction causing forward thrust. For example, a typical quadcopter always commands | ||
# non-negative values for all four motors, independent of ESC configuration, motor wiring, or propeller direction. | ||
# | ||
|
||
int14[<=20] cmd |
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