From 0a0775c3bd435fab929526fbcf3cc9bbdf7dd8ff Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 1 Dec 2016 20:16:11 -0500 Subject: [PATCH] Removed earlier hacky solution. --- Components/1770/1770.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Components/1770/1770.cpp b/Components/1770/1770.cpp index cdc9bb54a..65491fcff 100644 --- a/Components/1770/1770.cpp +++ b/Components/1770/1770.cpp @@ -323,12 +323,6 @@ void WD1770::posit_event(Event new_event_type) is_reading_data_ = false; index_hole_count_ = 0; - if(!has_motor_on_line()) - { - // TODO: ??? - set_motor_on(false); - } - update_status([] (Status &status) { status.busy = false; }); @@ -341,12 +335,6 @@ void WD1770::posit_event(Event new_event_type) printf("Starting %02x\n", command_); - if(!has_motor_on_line()) - { - // TODO: set HDL, wait for HDT - set_motor_on(true); - } - if(!(command_ & 0x80)) goto begin_type_1; if(!(command_ & 0x40)) goto begin_type_2; goto begin_type_3;