mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
Relay: reduce num relays to 2
This commit is contained in:
parent
fdf6aa5492
commit
47418b78d6
@ -42,19 +42,23 @@ const AP_Param::GroupInfo AP_Relay::var_info[] PROGMEM = {
|
||||
// @Values: -1:Disabled,13:APM2 A9 pin,47:APM1 relay,50:Pixhawk FMU AUX1,51:Pixhawk FMU AUX2,52:Pixhawk FMU AUX3,53:Pixhawk FMU AUX4,54:Pixhawk FMU AUX5,55:Pixhawk FMU AUX6,111:PX4 FMU Relay1,112:PX4 FMU Relay2,113:PX4IO Relay1,114:PX4IO Relay2,115:PX4IO ACC1,116:PX4IO ACC2
|
||||
AP_GROUPINFO("PIN2", 1, AP_Relay, _pin[1], -1),
|
||||
|
||||
#if AP_RELAY_NUM_RELAYS > 2
|
||||
// @Param: PIN3
|
||||
// @DisplayName: Third Relay Pin
|
||||
// @Description: Digital pin number for 3rd relay control.
|
||||
// @User: Standard
|
||||
// @Values: -1:Disabled,13:APM2 A9 pin,47:APM1 relay,50:Pixhawk FMU AUX1,51:Pixhawk FMU AUX2,52:Pixhawk FMU AUX3,53:Pixhawk FMU AUX4,54:Pixhawk FMU AUX5,55:Pixhawk FMU AUX6,111:PX4 FMU Relay1,112:PX4 FMU Relay2,113:PX4IO Relay1,114:PX4IO Relay2,115:PX4IO ACC1,116:PX4IO ACC2
|
||||
AP_GROUPINFO("PIN3", 2, AP_Relay, _pin[2], -1),
|
||||
#endif
|
||||
|
||||
#if AP_RELAY_NUM_RELAYS > 3
|
||||
// @Param: PIN4
|
||||
// @DisplayName: Fourth Relay Pin
|
||||
// @Description: Digital pin number for 4th relay control.
|
||||
// @User: Standard
|
||||
// @Values: -1:Disabled,13:APM2 A9 pin,47:APM1 relay,50:Pixhawk FMU AUX1,51:Pixhawk FMU AUX2,52:Pixhawk FMU AUX3,53:Pixhawk FMU AUX4,54:Pixhawk FMU AUX5,55:Pixhawk FMU AUX6,111:PX4 FMU Relay1,112:PX4 FMU Relay2,113:PX4IO Relay1,114:PX4IO Relay2,115:PX4IO ACC1,116:PX4IO ACC2
|
||||
AP_GROUPINFO("PIN4", 3, AP_Relay, _pin[3], -1),
|
||||
#endif
|
||||
|
||||
AP_GROUPEND
|
||||
};
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
#include <AP_Param.h>
|
||||
|
||||
#define AP_RELAY_NUM_RELAYS 4
|
||||
#define AP_RELAY_NUM_RELAYS 2
|
||||
|
||||
/// @class AP_Relay
|
||||
/// @brief Class to manage the APM relay
|
||||
|
Loading…
Reference in New Issue
Block a user