Skip to content

Commit 410a720

Browse files
committed
QD: Reduce motor spinup to 1 second (previously 2 seconds)
1 parent 3e21984 commit 410a720

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gotek/quickdisk.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ static void _IRQ_MOTOR_RESET_changed(unsigned int gpioa_idr)
183183

184184
if (!off) {
185185

186-
/* 2 seconds to spin up the motor. */
187-
timer_set(&motor.timer, time_now() + time_ms(2000));
186+
/* 1 second to spin up the motor. */
187+
timer_set(&motor.timer, time_now() + time_ms(1000));
188188

189189
} else {
190190

0 commit comments

Comments
 (0)