ソースを参照

firmware: Reset USB connection and Act LED on watchdog timeout.

Keir Fraser 4 年 前
コミット
43a0076d54
1 ファイル変更3 行追加1 行削除
  1. 3 1
      src/floppy.c

+ 3 - 1
src/floppy.c

@@ -1286,8 +1286,10 @@ void floppy_process(void)
 {
     int len;
 
-    if (auto_off.armed && (time_since(auto_off.deadline) >= 0))
+    if (auto_off.armed && (time_since(auto_off.deadline) >= 0)) {
+        floppy_configure();
         quiesce_drives();
+    }
 
     switch (floppy_state) {