forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AP_Scripting: added UltraMotion servo driver
- Loading branch information
Showing
2 changed files
with
57 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# UltraMotion CAN Driver | ||
|
||
This driver implements support for the UltraMotion CAN servos | ||
|
||
# Parameters | ||
|
||
The script used the following parameters: | ||
|
||
## UM_SERVO_MASK | ||
|
||
Mask of servo channels to transmit using UltraMotion CAN messages | ||
|
||
## UM_CANDRV | ||
|
||
This sets the CAN scripting driver number to attach to. This is | ||
normally set to 1 to use a CAN driver with CAN_Dx_PROTOCOL=10. To use | ||
the 2nd scripting CAN driver set this to 2 and set CAN_Dx_PROTOCOL=12. | ||
|
||
## UM_RATE_HZ | ||
|
||
This sets the update rate of the script in Hz (how often it checks for | ||
new data from the ECU). A value of 200 is reasonable. | ||
|
||
## UM_TORQUE_MAX | ||
|
||
This sets the commanded maximum torque as a percentage | ||
|
||
# Operation | ||
|
||
This driver should be loaded by placing the lua script in the | ||
APM/SCRIPTS directory on the microSD card, which can be done either | ||
directly or via MAVFTP. The following key parameters should be set: | ||
|
||
- SCR_ENABLE should be set to 1 | ||
- UM_SERVO_MASK needs to be set to a mask of servos | ||
|
||
then the flight controller should rebooted and parameters should be | ||
refreshed. |