mirror of https://github.com/ArduPilot/ardupilot
AP_Relay: don't default to using two PWMs as relays on FMUv4
This commit is contained in:
parent
155e82c1b3
commit
ea38448372
|
@ -17,6 +17,9 @@
|
|||
#ifdef CONFIG_ARCH_BOARD_PX4FMU_V1
|
||||
#define RELAY1_PIN_DEFAULT 111
|
||||
#define RELAY2_PIN_DEFAULT -1
|
||||
#elif defined(CONFIG_ARCH_BOARD_PX4FMU_V4)
|
||||
#define RELAY1_PIN_DEFAULT -1
|
||||
#define RELAY2_PIN_DEFAULT -1
|
||||
#else
|
||||
#define RELAY1_PIN_DEFAULT 54
|
||||
#define RELAY2_PIN_DEFAULT 55
|
||||
|
|
Loading…
Reference in New Issue