2011-10-01 19:55:41 -03:00
|
|
|
/*
|
|
|
|
* AP_Relay.cpp
|
|
|
|
*
|
|
|
|
* Created on: Oct 2, 2011
|
|
|
|
* Author: Amilcar Lucas
|
|
|
|
*/
|
|
|
|
|
2015-08-11 03:28:45 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2011-10-01 19:55:41 -03:00
|
|
|
#include "AP_Relay.h"
|
|
|
|
|
2015-11-03 09:46:30 -04:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2017-09-27 22:00:38 -03:00
|
|
|
#define RELAY1_PIN_DEFAULT 13
|
|
|
|
|
|
|
|
#elif CONFIG_HAL_BOARD == HAL_BOARD_LINUX
|
|
|
|
#if CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_BLUE
|
|
|
|
#define RELAY1_PIN_DEFAULT 57
|
|
|
|
#define RELAY2_PIN_DEFAULT 49
|
|
|
|
#define RELAY3_PIN_DEFAULT 116
|
|
|
|
#define RELAY4_PIN_DEFAULT 113
|
2020-04-03 15:21:04 -03:00
|
|
|
#elif CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_BBBMINI
|
|
|
|
#define RELAY1_PIN_DEFAULT 27
|
|
|
|
#define RELAY2_PIN_DEFAULT 65
|
|
|
|
#define RELAY3_PIN_DEFAULT 22
|
|
|
|
#define RELAY4_PIN_DEFAULT 81
|
|
|
|
#define RELAY5_PIN_DEFAULT 23
|
|
|
|
#define RELAY6_PIN_DEFAULT 26
|
2017-09-27 22:00:38 -03:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef RELAY1_PIN_DEFAULT
|
|
|
|
#define RELAY1_PIN_DEFAULT -1
|
2012-12-17 11:03:51 -04:00
|
|
|
#endif
|
2011-10-01 19:55:41 -03:00
|
|
|
|
2017-09-27 22:00:38 -03:00
|
|
|
#ifndef RELAY2_PIN_DEFAULT
|
|
|
|
#define RELAY2_PIN_DEFAULT -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef RELAY3_PIN_DEFAULT
|
|
|
|
#define RELAY3_PIN_DEFAULT -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef RELAY4_PIN_DEFAULT
|
|
|
|
#define RELAY4_PIN_DEFAULT -1
|
|
|
|
#endif
|
|
|
|
|
2018-10-03 10:03:49 -03:00
|
|
|
#ifndef RELAY5_PIN_DEFAULT
|
|
|
|
#define RELAY5_PIN_DEFAULT -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef RELAY6_PIN_DEFAULT
|
|
|
|
#define RELAY6_PIN_DEFAULT -1
|
|
|
|
#endif
|
|
|
|
|
2017-09-27 22:00:38 -03:00
|
|
|
|
2015-10-25 14:03:46 -03:00
|
|
|
const AP_Param::GroupInfo AP_Relay::var_info[] = {
|
2013-06-24 09:39:18 -03:00
|
|
|
// @Param: PIN
|
2014-01-19 21:59:21 -04:00
|
|
|
// @DisplayName: First Relay Pin
|
|
|
|
// @Description: Digital pin number for first relay control. This is the pin used for camera control.
|
|
|
|
// @User: Standard
|
2020-04-03 15:21:04 -03:00
|
|
|
// @Values: -1:Disabled,49:BB Blue GP0 pin 4,50:AUXOUT1,51:AUXOUT2,52:AUXOUT3,53:AUXOUT4,54:AUXOUT5,55:AUXOUT6,57:BB Blue GP0 pin 3,113:BB Blue GP0 pin 6,116:BB Blue GP0 pin 5,27:BBBMini Pin P8.17
|
2014-11-15 16:45:12 -04:00
|
|
|
AP_GROUPINFO("PIN", 0, AP_Relay, _pin[0], RELAY1_PIN_DEFAULT),
|
2014-01-19 21:59:21 -04:00
|
|
|
|
|
|
|
// @Param: PIN2
|
|
|
|
// @DisplayName: Second Relay Pin
|
|
|
|
// @Description: Digital pin number for 2nd relay control.
|
|
|
|
// @User: Standard
|
2020-04-03 15:21:04 -03:00
|
|
|
// @Values: -1:Disabled,49:BB Blue GP0 pin 4,50:AUXOUT1,51:AUXOUT2,52:AUXOUT3,53:AUXOUT4,54:AUXOUT5,55:AUXOUT6,57:BB Blue GP0 pin 3,113:BB Blue GP0 pin 6,116:BB Blue GP0 pin 5,65:BBBMini Pin P8.18
|
2014-11-15 16:45:12 -04:00
|
|
|
AP_GROUPINFO("PIN2", 1, AP_Relay, _pin[1], RELAY2_PIN_DEFAULT),
|
2014-01-19 21:59:21 -04:00
|
|
|
|
|
|
|
// @Param: PIN3
|
|
|
|
// @DisplayName: Third Relay Pin
|
|
|
|
// @Description: Digital pin number for 3rd relay control.
|
|
|
|
// @User: Standard
|
2020-04-03 15:21:04 -03:00
|
|
|
// @Values: -1:Disabled,49:BB Blue GP0 pin 4,50:AUXOUT1,51:AUXOUT2,52:AUXOUT3,53:AUXOUT4,54:AUXOUT5,55:AUXOUT6,57:BB Blue GP0 pin 3,113:BB Blue GP0 pin 6,116:BB Blue GP0 pin 5,22:BBBMini Pin P8.19
|
2017-09-27 22:00:38 -03:00
|
|
|
AP_GROUPINFO("PIN3", 2, AP_Relay, _pin[2], RELAY3_PIN_DEFAULT),
|
2014-01-19 21:59:21 -04:00
|
|
|
|
|
|
|
// @Param: PIN4
|
|
|
|
// @DisplayName: Fourth Relay Pin
|
|
|
|
// @Description: Digital pin number for 4th relay control.
|
2013-06-24 09:39:18 -03:00
|
|
|
// @User: Standard
|
2020-04-03 15:21:04 -03:00
|
|
|
// @Values: -1:Disabled,49:BB Blue GP0 pin 4,50:AUXOUT1,51:AUXOUT2,52:AUXOUT3,53:AUXOUT4,54:AUXOUT5,55:AUXOUT6,57:BB Blue GP0 pin 3,113:BB Blue GP0 pin 6,116:BB Blue GP0 pin 5,63:BBBMini Pin P8.34
|
2017-09-27 22:00:38 -03:00
|
|
|
AP_GROUPINFO("PIN4", 3, AP_Relay, _pin[3], RELAY4_PIN_DEFAULT),
|
2012-12-04 19:26:30 -04:00
|
|
|
|
2014-09-04 03:45:45 -03:00
|
|
|
// @Param: DEFAULT
|
|
|
|
// @DisplayName: Default relay state
|
2017-09-27 22:00:38 -03:00
|
|
|
// @Description: The state of the relay on boot.
|
2014-09-04 03:45:45 -03:00
|
|
|
// @User: Standard
|
|
|
|
// @Values: 0:Off,1:On,2:NoChange
|
|
|
|
AP_GROUPINFO("DEFAULT", 4, AP_Relay, _default, 0),
|
|
|
|
|
2018-10-03 10:03:49 -03:00
|
|
|
// @Param: PIN5
|
|
|
|
// @DisplayName: Fifth Relay Pin
|
|
|
|
// @Description: Digital pin number for 5th relay control.
|
|
|
|
// @User: Standard
|
2020-04-03 15:21:04 -03:00
|
|
|
// @Values: -1:Disabled,49:BB Blue GP0 pin 4,50:AUXOUT1,51:AUXOUT2,52:AUXOUT3,53:AUXOUT4,54:AUXOUT5,55:AUXOUT6,57:BB Blue GP0 pin 3,113:BB Blue GP0 pin 6,116:BB Blue GP0 pin 5,62:BBBMini Pin P8.13
|
2018-10-03 10:03:49 -03:00
|
|
|
AP_GROUPINFO("PIN5", 5, AP_Relay, _pin[4], RELAY5_PIN_DEFAULT),
|
|
|
|
|
|
|
|
// @Param: PIN6
|
|
|
|
// @DisplayName: Sixth Relay Pin
|
|
|
|
// @Description: Digital pin number for 6th relay control.
|
|
|
|
// @User: Standard
|
2020-04-03 15:21:04 -03:00
|
|
|
// @Values: -1:Disabled,49:BB Blue GP0 pin 4,50:AUXOUT1,51:AUXOUT2,52:AUXOUT3,53:AUXOUT4,54:AUXOUT5,55:AUXOUT6,57:BB Blue GP0 pin 3,113:BB Blue GP0 pin 6,116:BB Blue GP0 pin 5,37:BBBMini Pin P8.14
|
2018-10-03 10:03:49 -03:00
|
|
|
AP_GROUPINFO("PIN6", 6, AP_Relay, _pin[5], RELAY6_PIN_DEFAULT),
|
|
|
|
|
2013-06-24 09:39:18 -03:00
|
|
|
AP_GROUPEND
|
|
|
|
};
|
2011-10-01 19:55:41 -03:00
|
|
|
|
2019-04-22 20:12:56 -03:00
|
|
|
AP_Relay *AP_Relay::singleton;
|
2011-10-01 19:55:41 -03:00
|
|
|
|
2013-06-24 09:39:18 -03:00
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
|
|
|
AP_Relay::AP_Relay(void)
|
|
|
|
{
|
|
|
|
AP_Param::setup_object_defaults(this, var_info);
|
2019-04-22 20:12:56 -03:00
|
|
|
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
|
|
|
if (singleton != nullptr) {
|
|
|
|
AP_HAL::panic("AP_Relay must be singleton");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
singleton = this;
|
2011-10-01 19:55:41 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-26 19:15:00 -03:00
|
|
|
void AP_Relay::init()
|
2013-06-24 09:39:18 -03:00
|
|
|
{
|
2019-09-26 19:15:00 -03:00
|
|
|
if (_default != 0 && _default != 1) {
|
|
|
|
return;
|
2013-06-24 09:39:18 -03:00
|
|
|
}
|
2019-09-26 19:15:00 -03:00
|
|
|
for (uint8_t i=0; i<AP_RELAY_NUM_RELAYS; i++) {
|
|
|
|
set(i, _default);
|
2013-06-24 09:39:18 -03:00
|
|
|
}
|
2011-10-01 19:55:41 -03:00
|
|
|
}
|
|
|
|
|
2019-09-26 21:33:48 -03:00
|
|
|
void AP_Relay::set(const uint8_t instance, const bool value)
|
2013-06-24 09:39:18 -03:00
|
|
|
{
|
2019-09-26 21:33:48 -03:00
|
|
|
if (instance >= AP_RELAY_NUM_RELAYS) {
|
2019-09-26 19:15:00 -03:00
|
|
|
return;
|
2013-06-24 09:39:18 -03:00
|
|
|
}
|
2019-09-26 21:33:48 -03:00
|
|
|
if (_pin[instance] == -1) {
|
2019-09-26 19:15:00 -03:00
|
|
|
return;
|
|
|
|
}
|
2019-09-26 21:33:48 -03:00
|
|
|
hal.gpio->pinMode(_pin[instance], HAL_GPIO_OUTPUT);
|
|
|
|
hal.gpio->write(_pin[instance], value);
|
2011-10-01 19:55:41 -03:00
|
|
|
}
|
2013-06-24 09:39:18 -03:00
|
|
|
|
2019-09-26 21:33:48 -03:00
|
|
|
void AP_Relay::toggle(uint8_t instance)
|
2013-06-24 09:39:18 -03:00
|
|
|
{
|
2019-09-26 21:33:48 -03:00
|
|
|
if (instance < AP_RELAY_NUM_RELAYS && _pin[instance] != -1) {
|
|
|
|
bool ison = hal.gpio->read(_pin[instance]);
|
|
|
|
set(instance, !ison);
|
2013-06-24 09:39:18 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-27 04:22:21 -03:00
|
|
|
namespace AP {
|
|
|
|
|
|
|
|
AP_Relay *relay()
|
|
|
|
{
|
|
|
|
return AP_Relay::get_singleton();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|