Skip to content

Commit

Permalink
Merge pull request #338 from open-ephys/issue-322
Browse files Browse the repository at this point in the history
Leave devices enabled or disabled as default
  • Loading branch information
jonnew authored Oct 18, 2024
2 parents aed9bdc + 37408a5 commit 0e5a817
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenEphys.Onix1/ConfigureHeadstage64.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public ConfigureHeadstage64()
[Category(DevicesCategory)]
[TypeConverter(typeof(SingleDeviceFactoryConverter))]
[Description("Specifies the configuration for the TS4231 device in the headstage-64.")]
public ConfigureTS4231V1 TS4231 { get; set; } = new() { Enable = false };
public ConfigureTS4231V1 TS4231 { get; set; } = new();

/// <summary>
/// Gets or sets onboard electrical stimulator configuration.
Expand Down
2 changes: 1 addition & 1 deletion OpenEphys.Onix1/ConfigureNeuropixelsV1fHeadstage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public ConfigureNeuropixelsV1fHeadstage()
[Category(DevicesCategory)]
[TypeConverter(typeof(SingleDeviceFactoryConverter))]
[Description("Specifies the configuration for the TS4231 device in the headstage-64.")]
public ConfigureTS4231V1 TS4231 { get; set; } = new() { Enable = false };
public ConfigureTS4231V1 TS4231 { get; set; } = new();

internal override void UpdateDeviceNames()
{
Expand Down

0 comments on commit 0e5a817

Please sign in to comment.