2013-12-17 00:59:14 -04:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
/*
|
|
|
|
* AP_EPM.cpp
|
|
|
|
*
|
|
|
|
* Created on: DEC 6, 2013
|
|
|
|
* Author: Andreas Jochum
|
2016-06-23 20:48:29 -03:00
|
|
|
* Pavel Kirienko <pavel.kirienko@zubax.com> - UAVCAN support
|
2013-12-17 00:59:14 -04:00
|
|
|
*/
|
|
|
|
|
2015-08-11 03:28:42 -03:00
|
|
|
#include "AP_EPM.h"
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2016-06-23 20:48:29 -03:00
|
|
|
#include <AP_BoardConfig/AP_BoardConfig.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <cstdio>
|
2013-12-17 00:59:14 -04:00
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2015-10-25 14:03:46 -03:00
|
|
|
const AP_Param::GroupInfo AP_EPM::var_info[] = {
|
2013-12-17 00:59:14 -04:00
|
|
|
// @Param: ENABLE
|
|
|
|
// @DisplayName: EPM Enable/Disable
|
2014-09-17 03:00:46 -03:00
|
|
|
// @Description: EPM enable/disable
|
2013-12-17 00:59:14 -04:00
|
|
|
// @User: Standard
|
|
|
|
// @Values: 0:Disabled, 1:Enabled
|
|
|
|
AP_GROUPINFO("ENABLE", 0, AP_EPM, _enabled, 0),
|
|
|
|
|
2014-09-17 03:00:46 -03:00
|
|
|
// @Param: GRAB
|
|
|
|
// @DisplayName: EPM Grab PWM
|
|
|
|
// @Description: PWM value sent to EPM to initiate grabbing the cargo
|
|
|
|
// @User: Advanced
|
|
|
|
// @Range: 1000 2000
|
|
|
|
AP_GROUPINFO("GRAB", 1, AP_EPM, _grab_pwm, EPM_GRAB_PWM_DEFAULT),
|
|
|
|
|
|
|
|
// @Param: RELEASE
|
|
|
|
// @DisplayName: EPM Release PWM
|
|
|
|
// @Description: PWM value sent to EPM to release the cargo
|
|
|
|
// @User: Advanced
|
|
|
|
// @Range: 1000 2000
|
|
|
|
AP_GROUPINFO("RELEASE", 2, AP_EPM, _release_pwm, EPM_RELEASE_PWM_DEFAULT),
|
|
|
|
|
|
|
|
// @Param: NEUTRAL
|
|
|
|
// @DisplayName: EPM Neutral PWM
|
|
|
|
// @Description: PWM value sent to EPM when not grabbing or releasing
|
|
|
|
// @User: Advanced
|
|
|
|
// @Range: 1000 2000
|
|
|
|
AP_GROUPINFO("NEUTRAL", 3, AP_EPM, _neutral_pwm, EPM_NEUTRAL_PWM_DEFAULT),
|
|
|
|
|
|
|
|
// @Param: REGRAB
|
|
|
|
// @DisplayName: EPM Regrab interval
|
2016-06-26 15:22:27 -03:00
|
|
|
// @Description: Time in seconds that gripper will regrab the cargo to ensure grip has not weakened; 0 to disable
|
2014-09-17 03:00:46 -03:00
|
|
|
// @User: Advanced
|
2016-06-26 15:22:27 -03:00
|
|
|
// @Values: 0 255
|
2014-09-17 03:00:46 -03:00
|
|
|
AP_GROUPINFO("REGRAB", 4, AP_EPM, _regrab_interval, EPM_REGRAB_DEFAULT),
|
|
|
|
|
2016-06-23 20:48:29 -03:00
|
|
|
// @Param: REGRAB
|
|
|
|
// @DisplayName: EPM UAVCAN Hardpoint ID
|
|
|
|
// @Description: Refer to https://docs.zubax.com/opengrab_epm_v3#UAVCAN_interface
|
|
|
|
// @User: Standard
|
2016-06-26 15:22:27 -03:00
|
|
|
// @Range: 0 255
|
2016-06-23 20:48:29 -03:00
|
|
|
AP_GROUPINFO("UAVCAN_ID", 5, AP_EPM, _uavcan_hardpoint_id, 0),
|
|
|
|
|
2013-12-17 00:59:14 -04:00
|
|
|
AP_GROUPEND
|
|
|
|
};
|
|
|
|
|
2014-09-15 03:51:06 -03:00
|
|
|
AP_EPM::AP_EPM(void) :
|
|
|
|
_last_grab_or_release(0)
|
2013-12-17 00:59:14 -04:00
|
|
|
{
|
|
|
|
AP_Param::setup_object_defaults(this, var_info);
|
2014-09-17 03:00:46 -03:00
|
|
|
|
|
|
|
// initialise flags
|
|
|
|
_flags.grab = false;
|
|
|
|
_flags.active = false;
|
2013-12-17 00:59:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void AP_EPM::init()
|
|
|
|
{
|
|
|
|
// return immediately if not enabled
|
2014-09-15 03:51:06 -03:00
|
|
|
if (!_enabled) {
|
2013-12-17 00:59:14 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-26 15:23:34 -03:00
|
|
|
#ifdef UAVCAN_NODE_FILE
|
2016-06-23 20:48:29 -03:00
|
|
|
_uavcan_fd = open(UAVCAN_NODE_FILE, 0);
|
|
|
|
// http://ardupilot.org/dev/docs/learning-ardupilot-uarts-and-the-console.html
|
|
|
|
::printf("EPM: UAVCAN fd %d\n", _uavcan_fd);
|
2016-06-26 15:23:34 -03:00
|
|
|
#endif
|
2016-06-23 20:48:29 -03:00
|
|
|
|
2014-09-15 03:51:06 -03:00
|
|
|
// initialise the EPM to the neutral position
|
2013-12-17 00:59:14 -04:00
|
|
|
neutral();
|
|
|
|
}
|
|
|
|
|
2014-09-15 03:51:06 -03:00
|
|
|
// grab - move the epm pwm output to the grab position
|
|
|
|
void AP_EPM::grab()
|
2013-12-17 00:59:14 -04:00
|
|
|
{
|
|
|
|
// return immediately if not enabled
|
2014-09-15 03:51:06 -03:00
|
|
|
if (!_enabled) {
|
2013-12-17 00:59:14 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-17 03:00:46 -03:00
|
|
|
// flag we are active and grabbing cargo
|
|
|
|
_flags.grab = true;
|
|
|
|
_flags.active = true;
|
|
|
|
|
2014-09-15 03:51:06 -03:00
|
|
|
// capture time
|
2015-11-19 23:09:58 -04:00
|
|
|
_last_grab_or_release = AP_HAL::millis();
|
2014-09-15 03:51:06 -03:00
|
|
|
|
2016-06-26 15:29:55 -03:00
|
|
|
#ifdef UAVCAN_IOCS_HARDPOINT_SET
|
2016-06-23 20:48:29 -03:00
|
|
|
if (should_use_uavcan()) {
|
|
|
|
::printf("EPM: UAVCAN GRAB\n");
|
|
|
|
const UAVCANCommand cmd = make_uavcan_command(1);
|
|
|
|
(void)ioctl(_uavcan_fd, UAVCAN_IOCS_HARDPOINT_SET, reinterpret_cast<unsigned long>(&cmd));
|
2016-06-26 15:29:55 -03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2016-06-23 20:48:29 -03:00
|
|
|
// move the servo to the release position
|
|
|
|
RC_Channel_aux::set_radio(RC_Channel_aux::k_epm, _grab_pwm);
|
|
|
|
}
|
2013-12-17 00:59:14 -04:00
|
|
|
}
|
|
|
|
|
2014-09-15 03:51:06 -03:00
|
|
|
// release - move the epm pwm output to the release position
|
|
|
|
void AP_EPM::release()
|
2013-12-17 00:59:14 -04:00
|
|
|
{
|
|
|
|
// return immediately if not enabled
|
2014-09-15 03:51:06 -03:00
|
|
|
if (!_enabled) {
|
2013-12-17 00:59:14 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-17 03:00:46 -03:00
|
|
|
// flag we are active and releasing cargo
|
|
|
|
_flags.grab = false;
|
|
|
|
_flags.active = true;
|
|
|
|
|
2014-09-15 03:51:06 -03:00
|
|
|
// capture time
|
2015-11-19 23:09:58 -04:00
|
|
|
_last_grab_or_release = AP_HAL::millis();
|
2014-09-15 03:51:06 -03:00
|
|
|
|
2016-06-26 15:29:55 -03:00
|
|
|
#ifdef UAVCAN_IOCS_HARDPOINT_SET
|
2016-06-23 20:48:29 -03:00
|
|
|
if (should_use_uavcan()) {
|
|
|
|
::printf("EPM: UAVCAN RELEASE\n");
|
|
|
|
const UAVCANCommand cmd = make_uavcan_command(0);
|
|
|
|
(void)ioctl(_uavcan_fd, UAVCAN_IOCS_HARDPOINT_SET, reinterpret_cast<unsigned long>(&cmd));
|
2016-06-26 15:29:55 -03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2016-06-23 20:48:29 -03:00
|
|
|
// move the servo to the release position
|
|
|
|
RC_Channel_aux::set_radio(RC_Channel_aux::k_epm, _release_pwm);
|
|
|
|
}
|
2013-12-17 00:59:14 -04:00
|
|
|
}
|
|
|
|
|
2014-09-15 03:51:06 -03:00
|
|
|
// neutral - return the epm pwm output to the neutral position
|
2013-12-17 00:59:14 -04:00
|
|
|
void AP_EPM::neutral()
|
|
|
|
{
|
|
|
|
// return immediately if not enabled
|
2014-09-15 03:51:06 -03:00
|
|
|
if (!_enabled) {
|
2013-12-17 00:59:14 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-17 03:00:46 -03:00
|
|
|
// flag we are inactive (i.e. not grabbing or releasing cargo)
|
|
|
|
_flags.active = false;
|
|
|
|
|
2016-06-23 20:48:29 -03:00
|
|
|
if (!should_use_uavcan()) {
|
|
|
|
// move the servo to the off position
|
|
|
|
RC_Channel_aux::set_radio(RC_Channel_aux::k_epm, _neutral_pwm);
|
|
|
|
}
|
2014-09-15 03:51:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// update - moves the pwm back to neutral after the timeout has passed
|
|
|
|
// should be called at at least 10hz
|
|
|
|
void AP_EPM::update()
|
|
|
|
{
|
|
|
|
// move EPM PWM output back to neutral 2 seconds after the last grab or release
|
2015-11-19 23:09:58 -04:00
|
|
|
if (_flags.active && (AP_HAL::millis() - _last_grab_or_release > EPM_RETURN_TO_NEUTRAL_MS)) {
|
2014-09-15 03:51:06 -03:00
|
|
|
neutral();
|
|
|
|
}
|
|
|
|
|
2014-09-17 03:00:46 -03:00
|
|
|
// re-grab the cargo intermittently
|
2016-06-23 20:48:29 -03:00
|
|
|
if (_flags.grab && (_regrab_interval > 0) &&
|
|
|
|
(AP_HAL::millis() - _last_grab_or_release > ((uint32_t)_regrab_interval * 1000))) {
|
2014-09-17 03:00:46 -03:00
|
|
|
grab();
|
|
|
|
}
|
|
|
|
}
|