-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
13 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
namespace Qynit.Pulsewave; | ||
public record Instruction(string Name, IReadOnlyList<Channel> Channels); | ||
public record Instruction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
namespace Qynit.Pulsewave; | ||
public record SetFrequency(double Frequency, double ReferenceTime, Channel Channel) : Instruction(nameof(SetFrequency), new[] { Channel }); | ||
public sealed record SetFrequency(double Frequency, double ReferenceTime, Channel Channel) : Instruction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
namespace Qynit.Pulsewave; | ||
public record SetPhase(double Phase, Channel Channel) : Instruction(nameof(SetPhase), new[] { Channel }); | ||
public sealed record SetPhase(double Phase, Channel Channel) : Instruction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
namespace Qynit.Pulsewave; | ||
public record ShiftFrequency(double Frequency, double ReferenceTime, Channel Channel) : Instruction(nameof(ShiftFrequency), new[] { Channel }); | ||
public sealed record ShiftFrequency(double Frequency, double ReferenceTime, Channel Channel) : Instruction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
namespace Qynit.Pulsewave; | ||
public record ShiftPhase(double Phase, Channel Channel) : Instruction(nameof(ShiftPhase), new[] { Channel }); | ||
public sealed record ShiftPhase(double Phase, Channel Channel) : Instruction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
namespace Qynit.Pulsewave; | ||
public record SwapPhase(double ReferenceTime, Channel Channel1, Channel Channel2) : Instruction(nameof(SwapPhase), new[] { Channel1, Channel2 }); | ||
public sealed record SwapPhase(double ReferenceTime, Channel Channel1, Channel Channel2) : Instruction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.