mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
54 lines
1.2 KiB
Plaintext
54 lines
1.2 KiB
Plaintext
//
|
|
// DigitalPhaseLockedLoopBridge.m
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 12/07/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "DigitalPhaseLockedLoopBridge.h"
|
|
|
|
#include "DigitalPhaseLockedLoop.hpp"
|
|
#include <memory>
|
|
|
|
@interface DigitalPhaseLockedLoopBridge(BitPushing)
|
|
- (void)pushBit:(int)value;
|
|
@end
|
|
|
|
class DigitalPhaseLockedLoopDelegate {
|
|
public:
|
|
__weak DigitalPhaseLockedLoopBridge *bridge;
|
|
|
|
void digital_phase_locked_loop_output_bit(int value) {
|
|
[bridge pushBit:value ? 1 : 0];
|
|
}
|
|
};
|
|
|
|
@implementation DigitalPhaseLockedLoopBridge {
|
|
std::unique_ptr<Storage::DigitalPhaseLockedLoop<DigitalPhaseLockedLoopDelegate>> _digitalPhaseLockedLoop;
|
|
DigitalPhaseLockedLoopDelegate _delegate;
|
|
}
|
|
|
|
- (instancetype)initWithClocksPerBit:(NSUInteger)clocksPerBit {
|
|
self = [super init];
|
|
if(self) {
|
|
_digitalPhaseLockedLoop = std::make_unique<Storage::DigitalPhaseLockedLoop<DigitalPhaseLockedLoopDelegate>>((unsigned int)clocksPerBit, _delegate);
|
|
_delegate.bridge = self;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)runForCycles:(NSUInteger)cycles {
|
|
_digitalPhaseLockedLoop->run_for(Cycles((int)cycles));
|
|
}
|
|
|
|
- (void)addPulse {
|
|
_digitalPhaseLockedLoop->add_pulse();
|
|
}
|
|
|
|
- (void)pushBit:(int)value {
|
|
_stream = (_stream << 1) | value;
|
|
}
|
|
|
|
@end
|