mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
21 lines
416 B
Objective-C
21 lines
416 B
Objective-C
//
|
|
// DigitalPhaseLockedLoopBridge.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 12/07/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface DigitalPhaseLockedLoopBridge : NSObject
|
|
|
|
- (instancetype)initWithClocksPerBit:(NSUInteger)clocksPerBit;
|
|
|
|
- (void)runForCycles:(NSUInteger)cycles;
|
|
- (void)addPulse;
|
|
|
|
@property(nonatomic) NSUInteger stream;
|
|
|
|
@end
|