mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 06:05:27 +00:00
bac0461f7f
This allows the Macintosh to ensure that the IWM is kept up just-in-time with drive speed changes.
46 lines
874 B
C++
46 lines
874 B
C++
//
|
|
// DriveSpeedAccumulator.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 01/06/2019.
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef DriveSpeedAccumulator_hpp
|
|
#define DriveSpeedAccumulator_hpp
|
|
|
|
#include <array>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
namespace Apple {
|
|
namespace Macintosh {
|
|
|
|
class DriveSpeedAccumulator {
|
|
public:
|
|
/*!
|
|
Accepts fetched motor control values.
|
|
*/
|
|
void post_sample(uint8_t sample);
|
|
|
|
struct Delegate {
|
|
virtual void drive_speed_accumulator_set_drive_speed(DriveSpeedAccumulator *, float speed) = 0;
|
|
};
|
|
/*!
|
|
Sets the delegate to receive drive speed changes.
|
|
*/
|
|
void set_delegate(Delegate *delegate) {
|
|
delegate_ = delegate;;
|
|
}
|
|
|
|
private:
|
|
std::array<uint8_t, 20> samples_;
|
|
std::size_t sample_pointer_ = 0;
|
|
Delegate *delegate_ = nullptr;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* DriveSpeedAccumulator_hpp */
|