change release code

This commit is contained in:
shrkey
2016-10-17 15:45:34 +01:00
parent 02ba5eb2a7
commit cc2b77b0ad
2 changed files with 5 additions and 5 deletions

View File

@@ -434,10 +434,10 @@ void DW_Stepper::setMotorSpeed(uint16_t rpm) {
}
void DW_Stepper::off(void) {
DWC->setPin(AIN1pin, 1);
DWC->setPin(AIN2pin, 1);
DWC->setPin(BIN1pin, 1);
DWC->setPin(BIN2pin, 1);
DWC->setPin(AIN1pin, 0);
DWC->setPin(AIN2pin, 0);
DWC->setPin(BIN1pin, 0);
DWC->setPin(BIN2pin, 0);
}
void DW_Stepper::step(uint16_t steps, uint8_t dir, uint8_t style) {

View File

@@ -1,4 +1,4 @@
MODULES = AccelGyroMag Motor Stepper Multithread PPM-decoder Servo
MODULES = AccelGyroMag Motor Stepper PPM-decoder Servo
all:
for dir in $(MODULES); do \