Skip to content

Commit

Permalink
FRE / excelitas pco gmbh / 16.12.2024: removed old 'light sheet mode'…
Browse files Browse the repository at this point in the history
… and renamed it to new 'line scanning mode'
  • Loading branch information
franz-xaver committed Dec 16, 2024
1 parent a9bb2fe commit b83f874
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions DeviceAdapters/PCO_Generic/MMHWio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ int CPCOCam::InitLineTiming()
szhelp = "Off";
else
szhelp = "On";
csh = "Light Sheet Mode";
csh = "Line Scanning Mode";
nRet = CreateProperty(csh.c_str(), szhelp.c_str(), MM::String, false, pAct);
if (nRet != DEVICE_OK)
return nRet;
Expand All @@ -807,7 +807,7 @@ int CPCOCam::InitLineTiming()
szhelp = "us";
else
szhelp = "ms";
csh = "Light Sheet Mode Timebase";
csh = "Line Scanning Mode Timebase";
nRet = CreateProperty(csh.c_str(), szhelp.c_str(), MM::String, false, pAct);
if (nRet != DEVICE_OK)
return nRet;
Expand All @@ -823,21 +823,21 @@ int CPCOCam::InitLineTiming()


pAct = new CPropertyAction(this, &CPCOCam::OnCmosLineTime);
csh = "Light Sheet Mode Line Time";
csh = "Line Scanning Mode Line Time";
sprintf_s(szh, 100, "%d", m_dwCMOSLineTime);
nRet = CreateProperty(csh.c_str(), szh, MM::Integer, false, pAct);
if (nRet != DEVICE_OK)
return nRet;

pAct = new CPropertyAction(this, &CPCOCam::OnCmosDelayLines);
csh = "Light Sheet Mode Delay Lines";
csh = "Line Scanning Mode Delay Lines";
sprintf_s(szh, 100, "%d", m_dwCMOSDelayLines);
nRet = CreateProperty(csh.c_str(), szh, MM::Integer, false, pAct);
if (nRet != DEVICE_OK)
return nRet;

pAct = new CPropertyAction(this, &CPCOCam::OnCmosExposureLines);
csh = "Light Sheet Mode Exposure Lines";
csh = "Line Scanning Mode Exposure Lines";
sprintf_s(szh, 100, "%d", m_dwCMOSExposureLines);
nRet = CreateProperty(csh.c_str(), szh, MM::Integer, false, pAct);
if (nRet != DEVICE_OK)
Expand Down
2 changes: 1 addition & 1 deletion DeviceAdapters/PCO_Generic/MicroManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// DESCRIPTION: pco camera module
//
// AUTHOR: Franz Reitner, [email protected], 11/01/2010
// COPYRIGHT: PCO AG, Kelheim, 2010-up to now ;-)
// COPYRIGHT: Excelitas - PCO, Kelheim, 2010-up to now ;-)
// LICENSE: This file is distributed under the BSD license.
// License text is included with the source distribution.
//
Expand Down
2 changes: 1 addition & 1 deletion DeviceAdapters/PCO_Generic/MicroManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// DESCRIPTION: pco.camera generic camera module
//
// AUTHOR: Nenad Amodaj, [email protected], 06/08/2005
// Franz Reitner, pco ag, 13.12.2013
// Franz Reitner, excelitas pco, 13.12.2013
// COPYRIGHT: University of California, San Francisco, 2006
// LICENSE: This file is distributed under the BSD license.
// License text is included with the source distribution.
Expand Down

0 comments on commit b83f874

Please sign in to comment.