Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions InternalModules/ALO/ALO42S4Channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public class SineWaveGeneratorSettings : ISettings
[RestfulProperties("Output Voltage Level")]
public OutputVoltageLevel OutputVoltageLevel { get; set; } = OutputVoltageLevel._5V;

[RestfulProperties("Extended Frame")]
[RestfulProperties("Module Status Output")]
public ModuleStatusOutput ModuleStatusOutput { get; set; } = ModuleStatusOutput.OpenCircuit;
}

Expand Down Expand Up @@ -224,7 +224,7 @@ public class SquareWaveGeneratorSettings : ISettings
[RestfulProperties("Output Voltage Level")]
public OutputVoltageLevel OutputVoltageLevel { get; set; } = OutputVoltageLevel._5V;

[RestfulProperties("Extended Frame")]
[RestfulProperties("Module Status Output")]
public ModuleStatusOutput ModuleStatusOutput { get; set; } = ModuleStatusOutput.OpenCircuit;
}

Expand Down Expand Up @@ -256,7 +256,7 @@ public class TriangularWaveGeneratorSettings : ISettings
[RestfulProperties("Output Voltage Level")]
public OutputVoltageLevel OutputVoltageLevel { get; set; } = OutputVoltageLevel._5V;

[RestfulProperties("Extended Frame")]
[RestfulProperties("Module Status Output")]
public ModuleStatusOutput ModuleStatusOutput { get; set; } = ModuleStatusOutput.OpenCircuit;
}

Expand All @@ -282,7 +282,7 @@ public class WhiteNoiseGeneratorSettings : ISettings
[RestfulProperties("Output Voltage Level")]
public OutputVoltageLevel OutputVoltageLevel { get; set; } = OutputVoltageLevel._5V;

[RestfulProperties("Extended Frame")]
[RestfulProperties("Module Status Output")]
public ModuleStatusOutput ModuleStatusOutput { get; set; } = ModuleStatusOutput.OpenCircuit;
}

Expand All @@ -301,7 +301,7 @@ public class StreamingSettings : ISettings
[RestfulProperties("Output Voltage Level")]
public OutputVoltageLevel OutputVoltageLevel { get; set; } = OutputVoltageLevel._5V;

[RestfulProperties("Extended Frame")]
[RestfulProperties("Module Status Output")]
public ModuleStatusOutput ModuleStatusOutput { get; set; } = ModuleStatusOutput.OpenCircuit;
}

Expand All @@ -315,7 +315,7 @@ public class BufferedSettings : ISettings
[RestfulProperties("Output Voltage Level")]
public OutputVoltageLevel OutputVoltageLevel { get; set; } = OutputVoltageLevel._5V;

[RestfulProperties("Extended Frame")]
[RestfulProperties("Module Status Output")]
public ModuleStatusOutput ModuleStatusOutput { get; set; } = ModuleStatusOutput.OpenCircuit;
}

Expand Down
Loading