2016-07-13 01:42:23 +00:00
|
|
|
//
|
|
|
|
// DigitalPhaseLockedLoopBridge.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 12/07/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-07-13 01:42:23 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@interface DigitalPhaseLockedLoopBridge : NSObject
|
|
|
|
|
2020-01-12 22:25:21 +00:00
|
|
|
- (instancetype)initWithClocksPerBit:(NSUInteger)clocksPerBit;
|
2016-07-13 01:42:23 +00:00
|
|
|
|
|
|
|
- (void)runForCycles:(NSUInteger)cycles;
|
|
|
|
- (void)addPulse;
|
|
|
|
|
|
|
|
@property(nonatomic) NSUInteger stream;
|
|
|
|
|
|
|
|
@end
|