Ah, I think I see it in the ArduinoSlaveExtruder/Extruder.cpp code now. It's that reverse_motor_1() function parameter values:
#define DELAY_FOR_STOP 5
#define MOTOR_REVERSE_DURATION 300
#define MOTOR_FORWARD_DURATION 300
Those appear to correspond to the following in v2/src/Extruder/MotorController.cc:
#define DEFAULT_HALT_MS 5L
#define DEFAULT_REVERSE_MS 500L
#define DEFAULT_FORWARD_MS 300L
...and I'm not seeing an equivalent for the following:
#define DEFAULT_TRIGGER_MS 300L
It's used in setOn, which itself only appears to be called when SLAVE_CMD_TOGGLE_MOTOR_1 is received in Host.cc.
Should it be zero'd to deactivate or made a Really Large Number?
Aside: In Extruder/host.cc, is SLAVE_CMD_TOGGLE_VALVE missing "to_host.append8(RC_OK);" and "return true;" lines?
Andrew.