Skip to content

Commit

Permalink
Merge pull request #393 from imcclenahan/main
Browse files Browse the repository at this point in the history
Added Zyla support for SRRF
  • Loading branch information
marktsuchida authored Oct 18, 2023
2 parents 2b4a0b7 + 9237273 commit 49822fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DeviceAdapters/AndorSDK3/AndorSDK3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -777,8 +777,8 @@ int CAndorSDK3Camera::Initialize()
DDGStepWidthMode_property = new TEnumProperty(TAndorSDK3Strings::DDG_STEP_WIDTH_MODE, cameraDevice->GetEnum(L"DDGStepWidthMode"),
this, thd_, snapShotController_, false, true);

// SRRF (for Sona only)
if (0 == s_cameraName.compare(0, 4, "Sona"))
// SRRF (for Sona or Zyla)
if ((0 == s_cameraName.compare(0, 4, "Sona")) || (0 == s_cameraName.compare(0, 4, "Zyla")))
{
SRRFCamera_ = new SRRFAndorSDK3Camera(this);
if (SRRFCamera_) {
Expand Down

0 comments on commit 49822fd

Please sign in to comment.