Skip to content

Commit

Permalink
ASIStage: remove ASICRIF
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon committed Dec 16, 2024
1 parent 88a23b4 commit 5af7577
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 32 deletions.
6 changes: 0 additions & 6 deletions DeviceAdapters/ASIStage/ASIStage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/

#include "ASIStage.h"
#include "ASICRIF.h"
#include "ASICRISP.h"
#include "ASILED.h"
#include "ASIMagnifier.h"
Expand All @@ -21,7 +20,6 @@ MODULE_API void InitializeModuleData()
{
RegisterDevice(g_ZStageDeviceName, MM::StageDevice, "Z Stage");
RegisterDevice(g_XYStageDeviceName, MM::XYStageDevice, "XY Stage");
RegisterDevice(g_CRIFDeviceName, MM::AutoFocusDevice, "CRIF");
RegisterDevice(g_CRISPDeviceName, MM::AutoFocusDevice, "CRISP");
RegisterDevice(g_AZ100TurretName, MM::StateDevice, "AZ100 Turret");
RegisterDevice(g_StateDeviceName, MM::StateDevice, "State Device");
Expand All @@ -47,10 +45,6 @@ MODULE_API MM::Device* CreateDevice(const char* deviceName)
{
return new XYStage();
}
else if (name == g_CRIFDeviceName)
{
return new CRIF();
}
else if (name == g_CRISPDeviceName)
{
return new CRISP();
Expand Down
14 changes: 0 additions & 14 deletions DeviceAdapters/ASIStage/ASIStage.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const char* const g_Msg_ERR_INFO_COMMAND_NOT_SUPPORTED = "Cannot use the INFO co
// external device names used used by the rest of the system to load a device from the .dll library
const char* const g_XYStageDeviceName = "XYStage";
const char* const g_ZStageDeviceName = "ZStage";
const char* const g_CRIFDeviceName = "CRIF";
const char* const g_CRISPDeviceName = "CRISP";
const char* const g_AZ100TurretName = "AZ100 Turret";
const char* const g_StateDeviceName = "State Device";
Expand All @@ -51,7 +50,6 @@ const char* const g_TIRFDeviceName = "TIRF";
// corresponding device descriptions
const char* const g_XYStageDeviceDescription = "ASI XY stage driver adapter";
const char* const g_ZStageDeviceDescription = "ASI Z-stage driver adapter";
const char* const g_CRIFDeviceDescription = "ASI CRIF Autofocus adapter";
const char* const g_CRISPDeviceDescription = "ASI CRISP Autofocus adapter";
const char* const g_AZ100TurretDescription = "ASI AZ100 Turret Controller";
const char* const g_StateDeviceDescription = "ASI State Device";
Expand All @@ -63,18 +61,6 @@ const char* const g_TIRFDeviceDescription = "ASI TIRF Actuator";
const char* const g_Open = "Open";
const char* const g_Closed = "Closed";

// CRIF states
const char* const g_CRIFState = "CRIF State";
const char* const g_CRIF_I = "Unlock (Laser Off)";
const char* const g_CRIF_L = "Laser On";
const char* const g_CRIF_Cal = "Calibrate";
const char* const g_CRIF_G = "Calibration Succeeded";
const char* const g_CRIF_B = "Calibration Failed";
const char* const g_CRIF_k = "Locking";
const char* const g_CRIF_K = "Lock";
const char* const g_CRIF_E = "Error";
const char* const g_CRIF_O = "Laser Off";

// CRISP states
const char* const g_CRISPState = "CRISP State";
const char* const g_CRISP_I = "Idle";
Expand Down
4 changes: 1 addition & 3 deletions DeviceAdapters/ASIStage/ASIStage.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
</ItemGroup>
<ItemGroup>
<ClInclude Include="ASIBase.h" />
<ClInclude Include="ASICRIF.h" />
<ClInclude Include="ASICRISP.h" />
<ClInclude Include="ASILED.h" />
<ClInclude Include="ASIMagnifier.h" />
Expand All @@ -110,7 +109,6 @@
</ItemGroup>
<ItemGroup>
<ClCompile Include="ASIBase.cpp" />
<ClCompile Include="ASICRIF.cpp" />
<ClCompile Include="ASICRISP.cpp" />
<ClCompile Include="ASILED.cpp" />
<ClCompile Include="ASIMagnifier.cpp" />
Expand All @@ -124,4 +122,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
8 changes: 1 addition & 7 deletions DeviceAdapters/ASIStage/ASIStage.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="ASICRIF.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="ASICRISP.h">
<Filter>Header Files</Filter>
</ClInclude>
Expand Down Expand Up @@ -53,9 +50,6 @@
<ClCompile Include="ASIBase.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="ASICRIF.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="ASICRISP.cpp">
<Filter>Source Files</Filter>
</ClCompile>
Expand Down Expand Up @@ -84,4 +78,4 @@
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>
</Project>
2 changes: 0 additions & 2 deletions DeviceAdapters/ASIStage/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ deviceadapter_LTLIBRARIES = libmmgr_dal_ASIStage.la
libmmgr_dal_ASIStage_la_SOURCES = \
ASIBase.cpp \
ASIBase.h \
ASICRIF.cpp \
ASICRIF.h \
ASICRISP.cpp \
ASICRISP.h \
ASILED.cpp \
Expand Down

0 comments on commit 5af7577

Please sign in to comment.