1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-03 06:29:47 +00:00

Withdrew now-unused and never-implemented API from TimedEventLoop, and the redundant track time count from DiskController.

This commit is contained in:
Thomas Harte 2016-12-24 21:02:10 -05:00
parent bedea48d03
commit 1e416d4af0
4 changed files with 0 additions and 16 deletions

View File

@ -17,7 +17,6 @@ Controller::Controller(unsigned int clock_rate, unsigned int clock_rate_multipli
cycles_since_index_hole_(0),
cycles_since_event_(0),
time_into_track_of_last_event_(0),
motor_is_on_(false),
is_reading_(true),
@ -41,12 +40,10 @@ void Controller::setup_track()
{
Time time_found = track_->seek_to(track_time_now);
offset = track_time_now - time_found;
time_into_track_of_last_event_ = time_found;
}
else
{
offset = track_time_now;
time_into_track_of_last_event_.set_zero();
}
get_next_event(offset);
@ -98,12 +95,10 @@ void Controller::process_next_event()
{
case Track::Event::FluxTransition:
pll_->add_pulse();
time_into_track_of_last_event_ += current_event_.length;
break;
case Track::Event::IndexHole:
printf("%p %d [/%d = %d]\n", this, cycles_since_index_hole_, clock_rate_multiplier_, cycles_since_index_hole_ / clock_rate_multiplier_);
cycles_since_index_hole_ = 0;
time_into_track_of_last_event_.set_zero();
process_index_hole();
break;
}

View File

@ -112,7 +112,6 @@ class Controller: public DigitalPhaseLockedLoop::Delegate, public TimedEventLoop
inline void get_next_event(const Time &duration_already_passed);
Track::Event current_event_;
Time time_into_track_of_last_event_;
bool motor_is_on_;
bool is_reading_;

View File

@ -35,11 +35,6 @@ void TimedEventLoop::reset_timer()
cycles_until_event_ = 0;
}
void TimedEventLoop::reset_timer_to_offset(Time offset)
{
// TODO: apply
}
void TimedEventLoop::jump_to_next_event()
{
reset_timer();

View File

@ -71,11 +71,6 @@ namespace Storage {
*/
void reset_timer();
/*!
Sets the amount of time into the current event to @c offset.
*/
void reset_timer_to_offset(Time offset);
/*!
Causes an immediate call to @c process_next_event and a call to @c reset_timer with the
net effect of processing the current event immediately and fast forwarding exactly to the