13#include <unordered_map>
15#include <mx/app/application.hpp>
17#include "../MagAOXApp.hpp"
26#define CAMCTRL_E_NOCONFIGS ( -10 )
52 mx::app::appConfigurator &config
288template <
class derivedT>
373 float m_maxFPS{ std::numeric_limits<float>::max() };
643 const pcf::IndiProperty &
ipRecv
653 const pcf::IndiProperty &
ipRecv );
673 const pcf::IndiProperty &
ipRecv );
693 const pcf::IndiProperty &
ipRecv );
713 const pcf::IndiProperty &
ipRecv );
733 const pcf::IndiProperty &
ipRecv );
753 const pcf::IndiProperty &
ipRecv );
773 const pcf::IndiProperty &
ipRecv );
779 int setFPS( const mx::meta::trueFalseT<true> &t );
785 int setFPS( const mx::meta::trueFalseT<false> &f );
793 const pcf::IndiProperty &
ipRecv );
813 const pcf::IndiProperty &
ipRecv );
821 const pcf::IndiProperty &
ipRecv );
829 const pcf::IndiProperty &
ipRecv );
849 const pcf::IndiProperty &
ipRecv );
857 const pcf::IndiProperty &
ipRecv );
865 const pcf::IndiProperty &
ipRecv );
873 const pcf::IndiProperty &
ipRecv );
881 const pcf::IndiProperty &
ipRecv );
889 const pcf::IndiProperty &
ipRecv );
897 const pcf::IndiProperty &
ipRecv );
917 const pcf::IndiProperty &
ipRecv );
937 const pcf::IndiProperty &
ipRecv );
945 const pcf::IndiProperty &
ipRecv );
953 const pcf::IndiProperty &
ipRecv );
961 const pcf::IndiProperty &
ipRecv );
969 const pcf::IndiProperty &
ipRecv );
977 const pcf::IndiProperty &
ipRecv );
983 int setShutter(
int ss, const mx::meta::trueFalseT<true> &t );
989 int setShutter(
int ss, const mx::meta::trueFalseT<false> &f );
997 const pcf::IndiProperty &
ipRecv );
1045 return *
static_cast<derivedT *
>( this );
1049template <
class derivedT>
1055template <
class derivedT>
1058 if( derivedT::c_stdCamera_tempControl )
1060 config.add(
"camera.startupTemp",
1062 "camera.startupTemp",
1068 "The temperature setpoint to set after a power-on [C]. Default is 20 C." );
1071 if( derivedT::c_stdCamera_readoutSpeed )
1073 config.add(
"camera.defaultReadoutSpeed",
1075 "camera.defaultReadoutSpeed",
1078 "defaultReadoutSpeed",
1081 "The default amplifier and readout speed." );
1084 if( derivedT::c_stdCamera_vShiftSpeed )
1086 config.add(
"camera.defaultVShiftSpeed",
1088 "camera.defaultVShiftSpeed",
1091 "defaultVShiftSpeed",
1094 "The default vertical shift speed." );
1097 if( derivedT::c_stdCamera_emGain )
1099 config.add(
"camera.maxEMGain",
1107 "The maximum EM gain which can be set by the user." );
1110 if( derivedT::c_stdCamera_usesModes )
1112 config.add(
"camera.startupMode",
1114 "camera.startupMode",
1120 "The mode to set upon power on or application startup." );
1123 if( derivedT::c_stdCamera_usesROI )
1125 config.add(
"camera.default_x",
1133 "The default ROI x position." );
1134 config.add(
"camera.default_y",
1142 "The default ROI y position." );
1143 config.add(
"camera.default_w",
1151 "The default ROI width." );
1152 config.add(
"camera.default_h",
1160 "The default ROI height." );
1161 config.add(
"camera.default_bin_x",
1163 "camera.default_bin_x",
1169 "The default ROI x binning." );
1170 config.add(
"camera.default_bin_y",
1172 "camera.default_bin_y",
1178 "The default ROI y binning." );
1184template <
class derivedT>
1187 if( derivedT::c_stdCamera_tempControl )
1189 config( m_startupTemp,
"camera.startupTemp" );
1192 if( derivedT::c_stdCamera_readoutSpeed )
1194 config( m_defaultReadoutSpeed,
"camera.defaultReadoutSpeed" );
1197 if( derivedT::c_stdCamera_vShiftSpeed )
1199 config( m_defaultVShiftSpeed,
"camera.defaultVShiftSpeed" );
1202 if( derivedT::c_stdCamera_emGain )
1204 config( m_maxEMGain,
"camera.maxEMGain" );
1207 if( derivedT::c_stdCamera_usesModes )
1219 config( m_startupMode,
"camera.startupMode" );
1222 if( derivedT::c_stdCamera_usesROI )
1224 config( m_default_x,
"camera.default_x" );
1225 config( m_default_y,
"camera.default_y" );
1226 config( m_default_w,
"camera.default_w" );
1227 config( m_default_h,
"camera.default_h" );
1228 config( m_default_bin_x,
"camera.default_bin_x" );
1229 config( m_default_bin_y,
"camera.default_bin_y" );
1235template <
class derivedT>
1238 static_cast<void>( t );
1240 derived().createStandardIndiSelectionSw(
1241 m_indiP_readoutSpeed,
"readout_speed", m_readoutSpeedNames,
"Readout Speed" );
1244 if( m_readoutSpeedNameLabels.size() == m_readoutSpeedNames.size() )
1246 for(
size_t n = 0; n < m_readoutSpeedNames.size(); ++n )
1247 m_indiP_readoutSpeed[m_readoutSpeedNames[n]].setLabel( m_readoutSpeedNameLabels[n] );
1250 derived().registerIndiPropertyNew( m_indiP_readoutSpeed, st_newCallBack_stdCamera );
1255template <
class derivedT>
1258 static_cast<void>( f );
1263template <
class derivedT>
1266 static_cast<void>( t );
1268 derived().createStandardIndiSelectionSw(
1269 m_indiP_vShiftSpeed,
"vshift_speed", m_vShiftSpeedNames,
"Vert. Shift Speed" );
1271 if( m_vShiftSpeedNameLabels.size() == m_vShiftSpeedNames.size() )
1273 for(
size_t n = 0; n < m_vShiftSpeedNames.size(); ++n )
1274 m_indiP_vShiftSpeed[m_vShiftSpeedNames[n]].setLabel( m_vShiftSpeedNameLabels[n] );
1277 derived().registerIndiPropertyNew( m_indiP_vShiftSpeed, st_newCallBack_stdCamera );
1282template <
class derivedT>
1285 static_cast<void>( f );
1290template <
class derivedT>
1294 if( derivedT::c_stdCamera_tempControl )
1297 derived().createStandardIndiNumber(
1298 m_indiP_temp,
"temp_ccd", m_minTemp, m_maxTemp, m_stepTemp,
"%0.1f",
"CCD Temperature",
"CCD Temperature" );
1299 m_indiP_temp[
"current"].set( m_ccdTemp );
1300 m_indiP_temp[
"target"].set( m_ccdTempSetpt );
1301 if( derived().registerIndiPropertyNew( m_indiP_temp, st_newCallBack_stdCamera ) < 0 )
1303#ifndef STDCAMERA_TEST_NOLOG
1304 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1309 derived().createStandardIndiToggleSw(
1310 m_indiP_tempcont,
"temp_controller",
"CCD Temperature",
"Control On/Off" );
1311 m_indiP_tempcont[
"toggle"].set( pcf::IndiElement::Off );
1312 if( derived().registerIndiPropertyNew( m_indiP_tempcont, st_newCallBack_stdCamera ) < 0 )
1314#ifndef STDCAMERA_TEST_NOLOG
1315 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1320 derived().createROIndiText(
1321 m_indiP_tempstat,
"temp_control",
"status",
"CCD Temperature",
"",
"CCD Temperature" );
1322 if( derived().registerIndiPropertyReadOnly( m_indiP_tempstat ) < 0 )
1324#ifndef STDCAMERA_TEST_NOLOG
1325 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1330 else if( derivedT::c_stdCamera_temp )
1332 derived().createROIndiNumber( m_indiP_temp,
"temp_ccd",
"CCD Temperature",
"CCD Temperature" );
1333 m_indiP_temp.add( pcf::IndiElement(
"current" ) );
1334 m_indiP_temp[
"current"].set( m_ccdTemp );
1335 if( derived().registerIndiPropertyReadOnly( m_indiP_temp ) < 0 )
1337#ifndef STDCAMERA_TEST_NOLOG
1338 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1344 if( derivedT::c_stdCamera_readoutSpeed )
1346 mx::meta::trueFalseT<derivedT::c_stdCamera_readoutSpeed> tf;
1347 if( createReadoutSpeed( tf ) < 0 )
1349#ifndef STDCAMERA_TEST_NOLOG
1350 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1356 if( derivedT::c_stdCamera_vShiftSpeed )
1358 mx::meta::trueFalseT<derivedT::c_stdCamera_vShiftSpeed> tf;
1359 if( createVShiftSpeed( tf ) < 0 )
1361#ifndef STDCAMERA_TEST_NOLOG
1362 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1368 if( derivedT::c_stdCamera_emGain )
1370 derived().createStandardIndiNumber( m_indiP_emGain,
"emgain", 0, 1000, 1,
"%0.3f" );
1371 if( derived().registerIndiPropertyNew( m_indiP_emGain, st_newCallBack_stdCamera ) < 0 )
1373#ifndef STDCAMERA_TEST_NOLOG
1374 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1380 if( derivedT::c_stdCamera_exptimeCtrl )
1382 derived().createStandardIndiNumber(
1383 m_indiP_exptime,
"exptime", m_minExpTime, m_maxExpTime, m_stepExpTime,
"%0.3f" );
1384 if( derived().registerIndiPropertyNew( m_indiP_exptime, st_newCallBack_stdCamera ) < 0 )
1386#ifndef STDCAMERA_TEST_NOLOG
1387 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1393 if( derivedT::c_stdCamera_fpsCtrl )
1395 derived().createStandardIndiNumber( m_indiP_fps,
"fps", m_minFPS, m_maxFPS, m_stepFPS,
"%0.2f" );
1396 if( derived().registerIndiPropertyNew( m_indiP_fps, st_newCallBack_stdCamera ) < 0 )
1398#ifndef STDCAMERA_TEST_NOLOG
1399 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1404 else if( derivedT::c_stdCamera_fps )
1406 derived().createROIndiNumber( m_indiP_fps,
"fps" );
1407 m_indiP_fps.add( pcf::IndiElement(
"current" ) );
1408 m_indiP_fps[
"current"].setMin( m_minFPS );
1409 m_indiP_fps[
"current"].setMax( m_maxFPS );
1410 m_indiP_fps[
"current"].setStep( m_stepFPS );
1411 m_indiP_fps[
"current"].setFormat(
"%0.2f" );
1413 if( derived().registerIndiPropertyReadOnly( m_indiP_fps ) < 0 )
1415#ifndef STDCAMERA_TEST_NOLOG
1416 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1422 if( derivedT::c_stdCamera_synchro )
1424 derived().createStandardIndiToggleSw( m_indiP_synchro,
"synchro",
"Synchronization",
"Synchronization" );
1425 if( derived().registerIndiPropertyNew( m_indiP_synchro, st_newCallBack_stdCamera ) < 0 )
1427#ifndef STDCAMERA_TEST_NOLOG
1428 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1434 if( derivedT::c_stdCamera_usesModes )
1436 std::vector<std::string> modeNames;
1437 for(
auto it = m_cameraModes.begin();
it != m_cameraModes.end(); ++
it )
1439 modeNames.push_back(
it->first );
1442 if( derived().createStandardIndiSelectionSw( m_indiP_mode,
"mode", modeNames ) < 0 )
1444 derivedT::template log<software_critical>( { __FILE__, __LINE__ } );
1447 if( derived().registerIndiPropertyNew( m_indiP_mode, st_newCallBack_stdCamera ) < 0 )
1449#ifndef STDCAMERA_TEST_NOLOG
1450 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1456 derived().createStandardIndiRequestSw( m_indiP_reconfig,
"reconfigure" );
1457 if( derived().registerIndiPropertyNew( m_indiP_reconfig, st_newCallBack_stdCamera ) < 0 )
1459#ifndef STDCAMERA_TEST_NOLOG
1460 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1465 if( derivedT::c_stdCamera_usesROI )
1468 derived().createStandardIndiNumber( m_indiP_roi_x,
"roi_region_x", m_minROIx, m_maxROIx, m_stepROIx,
"%0.1f" );
1469 if( derived().registerIndiPropertyNew( m_indiP_roi_x, st_newCallBack_stdCamera ) < 0 )
1471#ifndef STDCAMERA_TEST_NOLOG
1472 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1477 derived().createStandardIndiNumber( m_indiP_roi_y,
"roi_region_y", m_minROIy, m_maxROIy, m_stepROIy,
"%0.1f" );
1478 if( derived().registerIndiPropertyNew( m_indiP_roi_y, st_newCallBack_stdCamera ) < 0 )
1480#ifndef STDCAMERA_TEST_NOLOG
1481 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1486 derived().createStandardIndiNumber(
1487 m_indiP_roi_w,
"roi_region_w", m_minROIWidth, m_maxROIWidth, m_stepROIWidth,
"%d" );
1488 if( derived().registerIndiPropertyNew( m_indiP_roi_w, st_newCallBack_stdCamera ) < 0 )
1490#ifndef STDCAMERA_TEST_NOLOG
1491 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1496 derived().createStandardIndiNumber(
1497 m_indiP_roi_h,
"roi_region_h", m_minROIHeight, m_maxROIHeight, m_stepROIHeight,
"%d" );
1498 if( derived().registerIndiPropertyNew( m_indiP_roi_h, st_newCallBack_stdCamera ) < 0 )
1500#ifndef STDCAMERA_TEST_NOLOG
1501 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1506 derived().createStandardIndiNumber(
1507 m_indiP_roi_bin_x,
"roi_region_bin_x", m_minROIBinning_x, m_maxROIBinning_x, m_stepROIBinning_x,
"%f" );
1508 if( derived().registerIndiPropertyNew( m_indiP_roi_bin_x, st_newCallBack_stdCamera ) < 0 )
1510#ifndef STDCAMERA_TEST_NOLOG
1511 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1516 derived().createStandardIndiNumber(
1517 m_indiP_roi_bin_y,
"roi_region_bin_y", m_minROIBinning_y, m_maxROIBinning_y, m_stepROIBinning_y,
"%f" );
1518 if( derived().registerIndiPropertyNew( m_indiP_roi_bin_y, st_newCallBack_stdCamera ) < 0 )
1520#ifndef STDCAMERA_TEST_NOLOG
1521 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1526 derived().createROIndiNumber( m_indiP_fullROI,
"roi_full_region" );
1527 m_indiP_fullROI.add( pcf::IndiElement(
"x" ) );
1528 m_indiP_fullROI[
"x"] = 0;
1529 m_indiP_fullROI.add( pcf::IndiElement(
"y" ) );
1530 m_indiP_fullROI[
"y"] = 0;
1531 m_indiP_fullROI.add( pcf::IndiElement(
"w" ) );
1532 m_indiP_fullROI[
"w"] = 0;
1533 m_indiP_fullROI.add( pcf::IndiElement(
"h" ) );
1534 m_indiP_fullROI[
"h"] = 0;
1535 if( derived().registerIndiPropertyReadOnly( m_indiP_fullROI ) < 0 )
1537#ifndef STDCAMERA_TEST_NOLOG
1538 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1543 derived().createStandardIndiRequestSw( m_indiP_roi_check,
"roi_region_check" );
1544 if( derived().registerIndiPropertyNew( m_indiP_roi_check, st_newCallBack_stdCamera ) < 0 )
1546#ifndef STDCAMERA_TEST_NOLOG
1547 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1552 derived().createStandardIndiRequestSw( m_indiP_roi_set,
"roi_set" );
1553 if( derived().registerIndiPropertyNew( m_indiP_roi_set, st_newCallBack_stdCamera ) < 0 )
1555#ifndef STDCAMERA_TEST_NOLOG
1556 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1561 derived().createStandardIndiRequestSw( m_indiP_roi_full,
"roi_set_full" );
1562 if( derived().registerIndiPropertyNew( m_indiP_roi_full, st_newCallBack_stdCamera ) < 0 )
1564#ifndef STDCAMERA_TEST_NOLOG
1565 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1570 derived().createStandardIndiRequestSw( m_indiP_roi_fullbin,
"roi_set_full_bin" );
1571 if( derived().registerIndiPropertyNew( m_indiP_roi_fullbin, st_newCallBack_stdCamera ) < 0 )
1573#ifndef STDCAMERA_TEST_NOLOG
1574 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1579 derived().createStandardIndiRequestSw( m_indiP_roi_loadlast,
"roi_load_last" );
1580 if( derived().registerIndiPropertyNew( m_indiP_roi_loadlast, st_newCallBack_stdCamera ) < 0 )
1582#ifndef STDCAMERA_TEST_NOLOG
1583 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1588 derived().createStandardIndiRequestSw( m_indiP_roi_last,
"roi_set_last" );
1589 if( derived().registerIndiPropertyNew( m_indiP_roi_last, st_newCallBack_stdCamera ) < 0 )
1591#ifndef STDCAMERA_TEST_NOLOG
1592 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1597 derived().createStandardIndiRequestSw( m_indiP_roi_default,
"roi_set_default" );
1598 if( derived().registerIndiPropertyNew( m_indiP_roi_default, st_newCallBack_stdCamera ) < 0 )
1600#ifndef STDCAMERA_TEST_NOLOG
1601 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1607 if( derivedT::c_stdCamera_cropMode )
1609 derived().createStandardIndiToggleSw( m_indiP_cropMode,
"roi_crop_mode",
"Crop Mode",
"Crop Mode" );
1610 if( derived().registerIndiPropertyNew( m_indiP_cropMode, st_newCallBack_stdCamera ) < 0 )
1612#ifndef STDCAMERA_TEST_NOLOG
1613 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1620 if( derivedT::c_stdCamera_hasShutter )
1622 derived().createROIndiText(
1623 m_indiP_shutterStatus,
"shutter_status",
"status",
"Shutter Status",
"Shutter",
"Status" );
1624 m_indiP_shutterStatus[
"status"] = m_shutterStatus;
1625 if( derived().registerIndiPropertyReadOnly( m_indiP_shutterStatus ) < 0 )
1627#ifndef STDCAMERA_TEST_NOLOG
1628 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1633 derived().createStandardIndiToggleSw( m_indiP_shutter,
"shutter",
"Shutter",
"Shutter" );
1634 if( derived().registerIndiPropertyNew( m_indiP_shutter, st_newCallBack_stdCamera ) < 0 )
1636#ifndef STDCAMERA_TEST_NOLOG
1637 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1643 if( derivedT::c_stdCamera_usesStateString )
1645 derived().createROIndiText( m_indiP_stateString,
"state_string",
"current",
"State String",
"State",
"String" );
1646 m_indiP_stateString.add( pcf::IndiElement(
"valid" ) );
1647 m_indiP_stateString[
"valid"] =
"no";
1648 if( derived().registerIndiPropertyReadOnly( m_indiP_stateString ) < 0 )
1650#ifndef STDCAMERA_TEST_NOLOG
1651 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1660template <
class derivedT>
1668 if( derived().powerOnWaitElapsed() )
1673 derived().powerOnDefaults();
1675 if( derivedT::c_stdCamera_tempControl )
1678 if( m_startupTemp > -999 )
1679 m_ccdTempSetpt = m_startupTemp;
1680 derived().updateIfChanged( m_indiP_temp,
"target", m_ccdTempSetpt,
INDI_IDLE );
1683 if( derivedT::c_stdCamera_usesROI )
1686 m_nextROI.x = m_currentROI.x;
1687 m_nextROI.y = m_currentROI.y;
1688 m_nextROI.w = m_currentROI.w;
1689 m_nextROI.h = m_currentROI.h;
1690 m_nextROI.bin_x = m_currentROI.bin_x;
1691 m_nextROI.bin_y = m_currentROI.bin_y;
1693 derived().updateIfChanged( m_indiP_roi_x,
"current", m_currentROI.x,
INDI_IDLE );
1694 derived().updateIfChanged( m_indiP_roi_x,
"target", m_nextROI.x,
INDI_IDLE );
1696 derived().updateIfChanged( m_indiP_roi_y,
"current", m_currentROI.y,
INDI_IDLE );
1697 derived().updateIfChanged( m_indiP_roi_y,
"target", m_nextROI.y,
INDI_IDLE );
1699 derived().updateIfChanged( m_indiP_roi_w,
"current", m_currentROI.w,
INDI_IDLE );
1700 derived().updateIfChanged( m_indiP_roi_w,
"target", m_nextROI.w,
INDI_IDLE );
1702 derived().updateIfChanged( m_indiP_roi_h,
"current", m_currentROI.h,
INDI_IDLE );
1703 derived().updateIfChanged( m_indiP_roi_h,
"target", m_nextROI.h,
INDI_IDLE );
1705 derived().updateIfChanged( m_indiP_roi_bin_x,
"current", m_currentROI.bin_x,
INDI_IDLE );
1706 derived().updateIfChanged( m_indiP_roi_bin_x,
"target", m_nextROI.bin_x,
INDI_IDLE );
1708 derived().updateIfChanged( m_indiP_roi_bin_y,
"current", m_currentROI.bin_y,
INDI_IDLE );
1709 derived().updateIfChanged( m_indiP_roi_bin_y,
"target", m_nextROI.bin_y,
INDI_IDLE );
1712 if( derivedT::c_stdCamera_hasShutter )
1714 if( m_shutterStatus ==
"OPERATING" )
1716 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_BUSY );
1718 if( m_shutterStatus ==
"POWERON" || m_shutterStatus ==
"READY" )
1720 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_OK );
1724 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_IDLE );
1727 if( m_shutterState == 1 )
1729 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::On,
INDI_OK );
1733 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::Off,
INDI_IDLE );
1746 if( derivedT::c_stdCamera_usesROI )
1748 derived().updateIfChanged( m_indiP_roi_x,
"current", m_currentROI.x,
INDI_IDLE );
1749 derived().updateIfChanged( m_indiP_roi_x,
"target", m_nextROI.x,
INDI_IDLE );
1751 derived().updateIfChanged( m_indiP_roi_y,
"current", m_currentROI.y,
INDI_IDLE );
1752 derived().updateIfChanged( m_indiP_roi_y,
"target", m_nextROI.y,
INDI_IDLE );
1754 derived().updateIfChanged( m_indiP_roi_w,
"current", m_currentROI.w,
INDI_IDLE );
1755 derived().updateIfChanged( m_indiP_roi_w,
"target", m_nextROI.w,
INDI_IDLE );
1757 derived().updateIfChanged( m_indiP_roi_h,
"current", m_currentROI.h,
INDI_IDLE );
1758 derived().updateIfChanged( m_indiP_roi_h,
"target", m_nextROI.h,
INDI_IDLE );
1760 derived().updateIfChanged( m_indiP_roi_bin_x,
"current", m_currentROI.bin_x,
INDI_IDLE );
1761 derived().updateIfChanged( m_indiP_roi_bin_x,
"target", m_nextROI.bin_x,
INDI_IDLE );
1763 derived().updateIfChanged( m_indiP_roi_bin_y,
"current", m_currentROI.bin_y,
INDI_IDLE );
1764 derived().updateIfChanged( m_indiP_roi_bin_y,
"target", m_nextROI.bin_y,
INDI_IDLE );
1770 catch(
const std::exception &e )
1773 { __FILE__, __LINE__, std::string(
"Exception caught: " ) + e.what() } );
1777template <
class derivedT>
1780 if( !derived().m_indiDriver )
1783 if( derivedT::c_stdCamera_usesModes )
1785 for(
auto it = m_cameraModes.begin();
it != m_cameraModes.end(); ++
it )
1787 derived().updateSwitchIfChanged( m_indiP_mode,
it->first, pcf::IndiElement::Off,
INDI_IDLE );
1791 if( derivedT::c_stdCamera_usesROI )
1813 if( derivedT::c_stdCamera_hasShutter )
1815 if( m_shutterStatus ==
"OPERATING" )
1817 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_BUSY );
1819 if( m_shutterStatus ==
"POWERON" || m_shutterStatus ==
"READY" )
1821 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_OK );
1825 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_IDLE );
1828 if( m_shutterState == 0 )
1830 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::On,
INDI_OK );
1834 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::Off,
INDI_IDLE );
1841template <
class derivedT>
1845 if( derivedT::c_stdCamera_hasShutter )
1847 if( m_shutterStatus ==
"OPERATING" )
1849 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_BUSY );
1851 if( m_shutterStatus ==
"POWERON" || m_shutterStatus ==
"READY" )
1853 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_OK );
1857 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_IDLE );
1860 if( m_shutterState == 0 )
1862 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::On,
INDI_OK );
1866 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::Off,
INDI_IDLE );
1873template <
class derivedT>
1879template <
class derivedT>
1882 derivedT *_app =
static_cast<derivedT *
>( app );
1883 return _app->newCallBack_stdCamera(
ipRecv );
1886template <
class derivedT>
1890 if(
ipRecv.getDevice() != derived().configName() )
1892#ifndef XWCTEST_INDI_CALLBACK_VALIDATION
1893 derivedT::template log<software_error>( { __FILE__, __LINE__,
"unknown INDI property" } );
1899 std::string name =
ipRecv.getName();
1901 if( name ==
"reconfigure" )
1902 return newCallBack_reconfigure(
ipRecv );
1903 else if( derivedT::c_stdCamera_temp && name ==
"temp_ccd" )
1904 return newCallBack_temp(
ipRecv );
1905 else if( derivedT::c_stdCamera_tempControl && name ==
"temp_ccd" )
1906 return newCallBack_temp(
ipRecv );
1907 else if( derivedT::c_stdCamera_tempControl && name ==
"temp_controller" )
1908 return newCallBack_temp_controller(
ipRecv );
1909 else if( derivedT::c_stdCamera_readoutSpeed && name ==
"readout_speed" )
1910 return newCallBack_readoutSpeed(
ipRecv );
1911 else if( derivedT::c_stdCamera_vShiftSpeed && name ==
"vshift_speed" )
1912 return newCallBack_vShiftSpeed(
ipRecv );
1913 else if( derivedT::c_stdCamera_emGain && name ==
"emgain" )
1914 return newCallBack_emgain(
ipRecv );
1915 else if( derivedT::c_stdCamera_exptimeCtrl && name ==
"exptime" )
1916 return newCallBack_exptime(
ipRecv );
1917 else if( derivedT::c_stdCamera_fpsCtrl && name ==
"fps" )
1918 return newCallBack_fps(
ipRecv );
1919 else if( derivedT::c_stdCamera_synchro && name ==
"synchro" )
1920 return newCallBack_synchro(
ipRecv );
1921 else if( derivedT::c_stdCamera_usesModes && name ==
"mode" )
1922 return newCallBack_mode(
ipRecv );
1923 else if( derivedT::c_stdCamera_cropMode && name ==
"roi_crop_mode" )
1924 return newCallBack_cropMode(
ipRecv );
1925 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_region_x" )
1926 return newCallBack_roi_x(
ipRecv );
1927 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_region_y" )
1928 return newCallBack_roi_y(
ipRecv );
1929 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_region_w" )
1930 return newCallBack_roi_w(
ipRecv );
1931 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_region_h" )
1932 return newCallBack_roi_h(
ipRecv );
1933 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_region_bin_x" )
1934 return newCallBack_roi_bin_x(
ipRecv );
1935 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_region_bin_y" )
1936 return newCallBack_roi_bin_y(
ipRecv );
1937 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_region_check" )
1938 return newCallBack_roi_check(
ipRecv );
1939 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_set" )
1940 return newCallBack_roi_set(
ipRecv );
1941 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_set_full" )
1942 return newCallBack_roi_full(
ipRecv );
1943 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_set_full_bin" )
1944 return newCallBack_roi_fullbin(
ipRecv );
1945 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_load_last" )
1946 return newCallBack_roi_loadlast(
ipRecv );
1947 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_set_last" )
1948 return newCallBack_roi_last(
ipRecv );
1949 else if( derivedT::c_stdCamera_usesROI && name ==
"roi_set_default" )
1950 return newCallBack_roi_default(
ipRecv );
1951 else if( derivedT::c_stdCamera_hasShutter && name ==
"shutter" )
1952 return newCallBack_shutter(
ipRecv );
1954#ifndef XWCTEST_INDI_CALLBACK_VALIDATION
1955 derivedT::template log<software_error>( { __FILE__, __LINE__,
"unknown INDI property" } );
1961template <
class derivedT>
1964 static_cast<void>( t );
1965 return derived().setTempSetPt();
1968template <
class derivedT>
1971 static_cast<void>( f );
1975template <
class derivedT>
1978 if( derivedT::c_stdCamera_tempControl )
1980#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
1986 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
1988 if( derived().indiTargetUpdate( m_indiP_temp, target,
ipRecv,
true ) < 0 )
1990 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
1994 m_ccdTempSetpt = target;
1996 mx::meta::trueFalseT<derivedT::c_stdCamera_tempControl> tf;
1997 return setTempSetPt( tf );
2005template <
class derivedT>
2008 static_cast<void>( t );
2009 return derived().setTempControl();
2012template <
class derivedT>
2015 static_cast<void>( f );
2019template <
class derivedT>
2022 if( derivedT::c_stdCamera_tempControl )
2024#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2028 if( !
ipRecv.find(
"toggle" ) )
2031 m_tempControlStatusSet =
false;
2033 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2035 if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::On )
2037 m_tempControlStatusSet =
true;
2038 derived().updateSwitchIfChanged( m_indiP_tempcont,
"toggle", pcf::IndiElement::On,
INDI_BUSY );
2040 else if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::Off )
2042 m_tempControlStatusSet =
false;
2043 derived().updateSwitchIfChanged( m_indiP_tempcont,
"toggle", pcf::IndiElement::Off,
INDI_BUSY );
2046 mx::meta::trueFalseT<derivedT::c_stdCamera_emGain> tf;
2047 return setTempControl( tf );
2055template <
class derivedT>
2058 static_cast<void>( t );
2059 return derived().setReadoutSpeed();
2062template <
class derivedT>
2065 static_cast<void>( f );
2069template <
class derivedT>
2072 if( derivedT::c_stdCamera_readoutSpeed )
2074#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2078 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2080 std::string newspeed;
2082 for(
size_t i = 0; i < m_readoutSpeedNames.size(); ++i )
2084 if( !
ipRecv.find( m_readoutSpeedNames[i] ) )
2087 if(
ipRecv[m_readoutSpeedNames[i]].getSwitchState() == pcf::IndiElement::On )
2089 if( newspeed !=
"" )
2091 derivedT::template log<text_log>(
"More than one readout speed selected",
logPrio::LOG_ERROR );
2095 newspeed = m_readoutSpeedNames[i];
2099 if( newspeed ==
"" )
2102 m_readoutSpeedNameSet = m_readoutSpeedName;
2106 m_readoutSpeedNameSet = newspeed;
2109 mx::meta::trueFalseT<derivedT::c_stdCamera_readoutSpeed> tf;
2110 return setReadoutSpeed( tf );
2116template <
class derivedT>
2119 static_cast<void>( t );
2120 return derived().setVShiftSpeed();
2123template <
class derivedT>
2126 static_cast<void>( f );
2130template <
class derivedT>
2133 if( derivedT::c_stdCamera_vShiftSpeed )
2135#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2139 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2141 std::string newspeed;
2143 for(
size_t i = 0; i < m_vShiftSpeedNames.size(); ++i )
2145 if( !
ipRecv.find( m_vShiftSpeedNames[i] ) )
2148 if(
ipRecv[m_vShiftSpeedNames[i]].getSwitchState() == pcf::IndiElement::On )
2150 if( newspeed !=
"" )
2152 derivedT::template log<text_log>(
"More than one vShift speed selected",
logPrio::LOG_ERROR );
2156 newspeed = m_vShiftSpeedNames[i];
2160 if( newspeed ==
"" )
2163 m_vShiftSpeedNameSet = m_vShiftSpeedName;
2167 m_vShiftSpeedNameSet = newspeed;
2170 mx::meta::trueFalseT<derivedT::c_stdCamera_vShiftSpeed> tf;
2171 return setVShiftSpeed( tf );
2177template <
class derivedT>
2180 static_cast<void>( t );
2181 return derived().setEMGain();
2184template <
class derivedT>
2187 static_cast<void>( f );
2191template <
class derivedT>
2194 if( derivedT::c_stdCamera_emGain )
2196#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2202 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2204 if( derived().indiTargetUpdate( m_indiP_emGain, target,
ipRecv,
true ) < 0 )
2206 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2210 m_emGainSet = target;
2212 mx::meta::trueFalseT<derivedT::c_stdCamera_emGain> tf;
2213 return setEMGain( tf );
2219template <
class derivedT>
2222 static_cast<void>( t );
2223 return derived().setExpTime();
2226template <
class derivedT>
2229 static_cast<void>( f );
2233template <
class derivedT>
2236 if( derivedT::c_stdCamera_exptimeCtrl )
2238#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2244 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2246 if( derived().indiTargetUpdate( m_indiP_exptime, target,
ipRecv,
true ) < 0 )
2248 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2252 m_expTimeSet = target;
2254 mx::meta::trueFalseT<derivedT::c_stdCamera_exptimeCtrl> tf;
2255 return setExpTime( tf );
2261template <
class derivedT>
2264 static_cast<void>( t );
2265 return derived().setFPS();
2268template <
class derivedT>
2271 static_cast<void>( f );
2275template <
class derivedT>
2278 if( derivedT::c_stdCamera_fpsCtrl )
2280#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2286 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2288 if( derived().indiTargetUpdate( m_indiP_fps, target,
ipRecv,
true ) < 0 )
2290 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2296 mx::meta::trueFalseT<derivedT::c_stdCamera_fpsCtrl> tf;
2297 return setFPS( tf );
2303template <
class derivedT>
2306 static_cast<void>( t );
2307 return derived().setSynchro();
2310template <
class derivedT>
2313 static_cast<void>( f );
2317template <
class derivedT>
2320 if( derivedT::c_stdCamera_synchro )
2322#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2326 if( !
ipRecv.find(
"toggle" ) )
2329 if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::Off )
2331 m_synchroSet =
false;
2334 if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::On )
2336 m_synchroSet =
true;
2339 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2341 mx::meta::trueFalseT<derivedT::c_stdCamera_synchro> tf;
2342 return setSynchro( tf );
2348template <
class derivedT>
2351 if( derivedT::c_stdCamera_usesModes )
2353#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2357 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2359 if(
ipRecv.getName() != m_indiP_mode.getName() )
2361 derivedT::template log<software_error>( { __FILE__, __LINE__,
"invalid indi property received" } );
2366 std::string newName =
"";
2367 for(
auto it = m_cameraModes.begin();
it != m_cameraModes.end(); ++
it )
2372 if(
ipRecv[
it->first].getSwitchState() == pcf::IndiElement::On )
2376 derivedT::template log<text_log>(
"More than one camera mode selected",
logPrio::LOG_ERROR );
2380 newName =
it->first;
2390 m_nextMode = newName;
2391 derived().m_reconfig =
true;
2401template <
class derivedT>
2404#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2408 if( !
ipRecv.find(
"request" ) )
2411 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2413 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2416 m_indiP_reconfig,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2418 m_nextMode = m_modeName;
2419 derived().m_reconfig =
true;
2426template <
class derivedT>
2429 static_cast<void>( t );
2430 return derived().setCropMode();
2433template <
class derivedT>
2436 static_cast<void>( f );
2440template <
class derivedT>
2443 if( derivedT::c_stdCamera_cropMode )
2445#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2449 if( !
ipRecv.find(
"toggle" ) )
2452 if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::Off )
2454 m_cropModeSet =
false;
2457 if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::On )
2459 m_cropModeSet =
true;
2462 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2464 mx::meta::trueFalseT<derivedT::c_stdCamera_cropMode> tf;
2465 return setCropMode( tf );
2472template <
class derivedT>
2475#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2481 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2483 if( derived().indiTargetUpdate( m_indiP_roi_x, target,
ipRecv,
false ) < 0 )
2485 m_nextROI.x = m_currentROI.x;
2486 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2490 m_nextROI.x = target;
2495template <
class derivedT>
2498#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2504 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2506 if( derived().indiTargetUpdate( m_indiP_roi_y, target,
ipRecv,
false ) < 0 )
2508 m_nextROI.y = m_currentROI.y;
2509 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2513 m_nextROI.y = target;
2518template <
class derivedT>
2521#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2527 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2529 if( derived().indiTargetUpdate( m_indiP_roi_w, target,
ipRecv,
false ) < 0 )
2531 m_nextROI.w = m_currentROI.w;
2532 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2536 m_nextROI.w = target;
2541template <
class derivedT>
2544#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2550 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2552 if( derived().indiTargetUpdate( m_indiP_roi_h, target,
ipRecv,
false ) < 0 )
2554 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2555 m_nextROI.h = m_currentROI.h;
2559 m_nextROI.h = target;
2564template <
class derivedT>
2567#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2573 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2575 if( derived().indiTargetUpdate( m_indiP_roi_bin_x, target,
ipRecv,
false ) < 0 )
2577 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2578 m_nextROI.bin_x = m_currentROI.bin_x;
2582 m_nextROI.bin_x = target;
2587template <
class derivedT>
2590#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2596 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2598 if( derived().indiTargetUpdate( m_indiP_roi_bin_y, target,
ipRecv,
false ) < 0 )
2600 derivedT::template log<software_error>( { __FILE__, __LINE__ } );
2601 m_nextROI.bin_y = m_currentROI.bin_y;
2605 m_nextROI.bin_y = target;
2610template <
class derivedT>
2613 static_cast<void>( t );
2614 return derived().checkNextROI();
2617template <
class derivedT>
2620 static_cast<void>( f );
2624template <
class derivedT>
2627 if( derivedT::c_stdCamera_usesROI )
2629#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2633 if( !
ipRecv.find(
"request" ) )
2636 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2638 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2641 m_indiP_roi_check,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2643 mx::meta::trueFalseT<derivedT::c_stdCamera_usesROI> tf;
2644 return checkNextROI( tf );
2653template <
class derivedT>
2656 static_cast<void>( t );
2657 return derived().setNextROI();
2660template <
class derivedT>
2663 static_cast<void>( f );
2667template <
class derivedT>
2670 if( derivedT::c_stdCamera_usesROI )
2672#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2676 if( !
ipRecv.find(
"request" ) )
2679 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2681 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2684 m_indiP_roi_set,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2686 m_lastROI = m_currentROI;
2688 mx::meta::trueFalseT<derivedT::c_stdCamera_usesROI> tf;
2689 return setNextROI( tf );
2698template <
class derivedT>
2701 if( derivedT::c_stdCamera_usesROI )
2703#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2707 if( !
ipRecv.find(
"request" ) )
2710 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2712 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2715 m_indiP_roi_full,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2717 m_nextROI.x = m_full_x;
2718 m_nextROI.y = m_full_y;
2719 m_nextROI.w = m_full_w;
2720 m_nextROI.h = m_full_h;
2721 m_nextROI.bin_x = m_full_bin_x;
2722 m_nextROI.bin_y = m_full_bin_y;
2723 m_lastROI = m_currentROI;
2724 mx::meta::trueFalseT<derivedT::c_stdCamera_usesROI> tf;
2725 return setNextROI( tf );
2734template <
class derivedT>
2737 if( derivedT::c_stdCamera_usesROI )
2739#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2743 if( !
ipRecv.find(
"request" ) )
2746 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2748 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2751 m_indiP_roi_fullbin,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2755 if( m_full_currbin_x == 0 )
2757 derivedT::template log<text_log>(
"current-binning full ROI not implemented for this camera",
2759 m_full_currbin_x = m_full_x;
2760 m_full_currbin_y = m_full_y;
2761 m_full_currbin_w = m_full_w;
2762 m_full_currbin_h = m_full_h;
2766 m_nextROI.x = m_full_currbin_x;
2767 m_nextROI.y = m_full_currbin_y;
2768 m_nextROI.w = m_full_currbin_w;
2769 m_nextROI.h = m_full_currbin_h;
2773 m_nextROI.bin_x = m_full_bin_x;
2774 m_nextROI.bin_y = m_full_bin_y;
2777 m_full_currbin_x = 0;
2778 m_full_currbin_y = 0;
2779 m_full_currbin_w = 0;
2780 m_full_currbin_h = 0;
2784 m_nextROI.bin_x = m_currentROI.bin_x;
2785 m_nextROI.bin_y = m_currentROI.bin_y;
2788 m_lastROI = m_currentROI;
2789 mx::meta::trueFalseT<derivedT::c_stdCamera_usesROI> tf;
2790 return setNextROI( tf );
2799template <
class derivedT>
2802 if( derivedT::c_stdCamera_usesROI )
2804#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2808 if( !
ipRecv.find(
"request" ) )
2811 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2813 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2816 m_indiP_roi_loadlast,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2818 m_nextROI = m_lastROI;
2828template <
class derivedT>
2831 if( derivedT::c_stdCamera_usesROI )
2833#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2836 if( !
ipRecv.find(
"request" ) )
2839 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2841 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2844 m_indiP_roi_last,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2846 m_nextROI = m_lastROI;
2847 m_lastROI = m_currentROI;
2848 mx::meta::trueFalseT<derivedT::c_stdCamera_usesROI> tf;
2849 return setNextROI( tf );
2858template <
class derivedT>
2861 if( derivedT::c_stdCamera_usesROI )
2863#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2867 if( !
ipRecv.find(
"request" ) )
2870 if(
ipRecv[
"request"].getSwitchState() == pcf::IndiElement::On )
2872 std::unique_lock<std::mutex>
lock( derived().m_indiMutex );
2875 m_indiP_roi_default,
"request", pcf::IndiElement::Off, derived().m_indiDriver,
INDI_IDLE );
2877 m_nextROI.x = m_default_x;
2878 m_nextROI.y = m_default_y;
2879 m_nextROI.w = m_default_w;
2880 m_nextROI.h = m_default_h;
2881 m_nextROI.bin_x = m_default_bin_x;
2882 m_nextROI.bin_y = m_default_bin_y;
2883 m_lastROI = m_currentROI;
2884 mx::meta::trueFalseT<derivedT::c_stdCamera_usesROI> tf;
2885 return setNextROI( tf );
2894template <
class derivedT>
2897 static_cast<void>( t );
2898 return derived().setShutter( ss );
2901template <
class derivedT>
2904 static_cast<void>( ss );
2905 static_cast<void>( f );
2909template <
class derivedT>
2912 if( derivedT::c_stdCamera_hasShutter )
2914#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
2918 if( !
ipRecv.find(
"toggle" ) )
2921 mx::meta::trueFalseT<derivedT::c_stdCamera_hasShutter> tf;
2923 if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::Off )
2925 setShutter( 1, tf );
2928 if(
ipRecv[
"toggle"].getSwitchState() == pcf::IndiElement::On )
2930 setShutter( 0, tf );
2938template <
class derivedT>
2941 static_cast<void>( t );
2942 return derived().stateString();
2945template <
class derivedT>
2948 static_cast<void>( f );
2952template <
class derivedT>
2955 static_cast<void>( t );
2956 return derived().stateStringValid();
2959template <
class derivedT>
2962 static_cast<void>( f );
2966template <
class derivedT>
2971 if( !derived().m_indiDriver )
2974 if( derivedT::c_stdCamera_readoutSpeed )
2977 m_indiP_readoutSpeed, m_readoutSpeedName, derived().m_indiDriver,
INDI_OK );
2980 if( derivedT::c_stdCamera_vShiftSpeed )
2983 m_indiP_vShiftSpeed, m_vShiftSpeedName, derived().m_indiDriver,
INDI_OK );
2986 if( derivedT::c_stdCamera_emGain )
2988 derived().updateIfChanged( m_indiP_emGain,
"current", m_emGain,
INDI_IDLE );
2989 derived().updateIfChanged( m_indiP_emGain,
"target", m_emGainSet,
INDI_IDLE );
2992 if( derivedT::c_stdCamera_exptimeCtrl )
2994 derived().updateIfChanged( m_indiP_exptime,
"current", m_expTime,
INDI_IDLE );
2995 derived().updateIfChanged( m_indiP_exptime,
"target", m_expTimeSet,
INDI_IDLE );
2998 if( derivedT::c_stdCamera_fpsCtrl )
3000 derived().updateIfChanged( m_indiP_fps,
"current", m_fps,
INDI_IDLE );
3001 derived().updateIfChanged( m_indiP_fps,
"target", m_fpsSet,
INDI_IDLE );
3003 else if( derivedT::c_stdCamera_fps )
3005 derived().updateIfChanged( m_indiP_fps,
"current", m_fps,
INDI_IDLE );
3008 if( derivedT::c_stdCamera_synchro )
3010 if( m_synchro ==
false )
3012 derived().updateSwitchIfChanged( m_indiP_synchro,
"toggle", pcf::IndiElement::Off,
INDI_IDLE );
3016 derived().updateSwitchIfChanged( m_indiP_synchro,
"toggle", pcf::IndiElement::On,
INDI_OK );
3020 if( derivedT::c_stdCamera_usesModes )
3022 auto st = pcf::IndiProperty::Ok;
3023 if( m_nextMode !=
"" )
3024 st = pcf::IndiProperty::Busy;
3026 for(
auto it = m_cameraModes.begin();
it != m_cameraModes.end(); ++
it )
3028 if(
it->first == m_modeName )
3029 derived().updateSwitchIfChanged( m_indiP_mode,
it->first, pcf::IndiElement::On, st );
3031 derived().updateSwitchIfChanged( m_indiP_mode,
it->first, pcf::IndiElement::Off, st );
3035 if( derivedT::c_stdCamera_cropMode )
3037 if( m_cropMode ==
false )
3039 derived().updateSwitchIfChanged( m_indiP_cropMode,
"toggle", pcf::IndiElement::Off,
INDI_IDLE );
3043 derived().updateSwitchIfChanged( m_indiP_cropMode,
"toggle", pcf::IndiElement::On,
INDI_OK );
3047 if( derivedT::c_stdCamera_usesROI )
3051 derived().updateIfChanged( m_indiP_fullROI,
"x", m_full_x,
INDI_IDLE );
3052 derived().updateIfChanged( m_indiP_fullROI,
"y", m_full_y,
INDI_IDLE );
3053 derived().updateIfChanged( m_indiP_fullROI,
"w", m_full_w,
INDI_IDLE );
3054 derived().updateIfChanged( m_indiP_fullROI,
"h", m_full_h,
INDI_IDLE );
3057 if( derivedT::c_stdCamera_tempControl )
3059 if( m_tempControlStatus ==
false )
3061 derived().updateSwitchIfChanged( m_indiP_tempcont,
"toggle", pcf::IndiElement::Off,
INDI_IDLE );
3062 derived().updateIfChanged( m_indiP_temp,
"current", m_ccdTemp,
INDI_IDLE );
3063 derived().updateIfChanged( m_indiP_temp,
"target", m_ccdTempSetpt,
INDI_IDLE );
3064 derived().updateIfChanged( m_indiP_tempstat,
"status", m_tempControlStatusStr,
INDI_IDLE );
3068 if( m_tempControlOnTarget )
3070 derived().updateSwitchIfChanged( m_indiP_tempcont,
"toggle", pcf::IndiElement::On,
INDI_OK );
3071 derived().updateIfChanged( m_indiP_temp,
"current", m_ccdTemp,
INDI_OK );
3072 derived().updateIfChanged( m_indiP_temp,
"target", m_ccdTempSetpt,
INDI_OK );
3073 derived().updateIfChanged( m_indiP_tempstat,
"status", m_tempControlStatusStr,
INDI_OK );
3077 derived().updateSwitchIfChanged( m_indiP_tempcont,
"toggle", pcf::IndiElement::On,
INDI_BUSY );
3078 derived().updateIfChanged( m_indiP_temp,
"current", m_ccdTemp,
INDI_BUSY );
3079 derived().updateIfChanged( m_indiP_temp,
"target", m_ccdTempSetpt,
INDI_BUSY );
3080 derived().updateIfChanged( m_indiP_tempstat,
"status", m_tempControlStatusStr,
INDI_BUSY );
3084 else if( derivedT::c_stdCamera_temp )
3086 derived().updateIfChanged( m_indiP_temp,
"current", m_ccdTemp,
INDI_IDLE );
3089 if( derivedT::c_stdCamera_hasShutter )
3091 if( m_shutterStatus ==
"OPERATING" )
3093 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_BUSY );
3095 if( m_shutterStatus ==
"POWERON" || m_shutterStatus ==
"READY" )
3097 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_IDLE );
3101 derived().updateIfChanged( m_indiP_shutterStatus,
"status", m_shutterStatus,
INDI_IDLE );
3104 if( m_shutterState == 0 )
3106 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::On,
INDI_OK );
3110 derived().updateSwitchIfChanged( m_indiP_shutter,
"toggle", pcf::IndiElement::Off,
INDI_IDLE );
3114 if( derivedT::c_stdCamera_usesStateString )
3116 mx::meta::trueFalseT<derivedT::c_stdCamera_usesStateString> tf;
3117 derived().updateIfChanged( m_indiP_stateString,
"current", stateString( tf ),
INDI_IDLE );
3118 if( stateStringValid( tf ) )
3120 derived().updateIfChanged( m_indiP_stateString,
"valid",
"yes",
INDI_IDLE );
3124 derived().updateIfChanged( m_indiP_stateString,
"valid",
"no",
INDI_IDLE );
3129 catch(
const std::exception &e )
3132 { __FILE__, __LINE__, std::string(
"Exception caught: " ) + e.what() } );
3136template <
class derivedT>
3139 static std::string last_mode;
3140 static roi last_roi;
3141 static float last_expTime = -1e30;
3142 static float last_fps = 0;
3143 static float last_adcSpeed = -1;
3144 static float last_emGain = -1;
3145 static float last_ccdTemp = 0;
3146 static float last_ccdTempSetpt = 0;
3147 static bool last_tempControlStatus = 0;
3148 static bool last_tempControlOnTarget = 0;
3149 static std::string last_tempControlStatusStr;
3150 static std::string last_shutterStatus;
3151 static int last_shutterState =
false;
3152 static bool last_synchro =
false;
3153 static float last_vshiftSpeed = -1;
3154 static bool last_cropMode =
false;
3156 if( force || m_modeName != last_mode || m_currentROI.x != last_roi.
x || m_currentROI.y != last_roi.
y ||
3157 m_currentROI.w != last_roi.
w || m_currentROI.h != last_roi.
h || m_currentROI.bin_x != last_roi.
bin_x ||
3158 m_currentROI.bin_y != last_roi.
bin_y || m_expTime != last_expTime || m_fps != last_fps ||
3159 m_emGain != last_emGain || m_adcSpeed != last_adcSpeed || m_ccdTemp != last_ccdTemp ||
3160 m_ccdTempSetpt != last_ccdTempSetpt || m_tempControlStatus != last_tempControlStatus ||
3161 m_tempControlOnTarget != last_tempControlOnTarget || m_tempControlStatusStr != last_tempControlStatusStr ||
3162 m_shutterStatus != last_shutterStatus || m_shutterState != last_shutterState || m_synchro != last_synchro ||
3163 m_vshiftSpeed != last_vshiftSpeed || m_cropMode != last_cropMode )
3165 derived().template telem<telem_stdcam>( { m_modeName,
3178 (uint8_t)m_tempControlStatus,
3179 (uint8_t)m_tempControlOnTarget,
3180 m_tempControlStatusStr,
3182 (int8_t)m_shutterState,
3185 (uint8_t)m_cropMode } );
3187 last_mode = m_modeName;
3188 last_roi = m_currentROI;
3189 last_expTime = m_expTime;
3191 last_emGain = m_emGain;
3192 last_adcSpeed = m_adcSpeed;
3193 last_ccdTemp = m_ccdTemp;
3194 last_ccdTempSetpt = m_ccdTempSetpt;
3195 last_tempControlStatus = m_tempControlStatus;
3196 last_tempControlOnTarget = m_tempControlOnTarget;
3197 last_tempControlStatusStr = m_tempControlStatusStr;
3198 last_shutterStatus = m_shutterStatus;
3199 last_shutterState = m_shutterState;
3200 last_synchro = m_synchro;
3201 last_vshiftSpeed = m_vshiftSpeed;
3202 last_cropMode = m_cropMode;
3213#define STDCAMERA_SETUP_CONFIG( cfig ) \
3214 if(stdCameraT::setupConfig(cfig) < 0) \
3216 log<software_error>({__FILE__, __LINE__, "Error from stdCameraT::setupConfig"}); \
3217 m_shutdown = true; \
3225#define STDCAMERA_LOAD_CONFIG( cfig ) \
3226 if(stdCameraT::loadConfig(cfig) < 0) \
3228 return log<software_error,-1>({__FILE__, __LINE__, "Error from stdCameraT::loadConfig"}); \
3232#define STDCAMERA_APP_STARTUP \
3233 if(stdCameraT::appStartup() < 0) \
3235 return log<software_error,-1>({__FILE__, __LINE__, "Error from stdCameraT::appStartup"}); \
3239#define STDCAMERA_APP_LOGIC \
3240 if(stdCameraT::appLogic() < 0) \
3242 return log<software_error,-1>({__FILE__, __LINE__, "Error from stdCameraT::appLogic"}); \
3246#define STDCAMERA_UPDATE_INDI \
3247 if(stdCameraT::updateINDI() < 0) \
3249 return log<software_error,-1>({__FILE__, __LINE__, "Error from stdCameraT::updateINDI"}); \
3253#define STDCAMERA_APP_SHUTDOWN \
3254 if(stdCameraT::appShutdown() < 0) \
3256 return log<software_error,-1>({__FILE__, __LINE__, "Error from stdCameraT::appShutdown"}); \
MagAO-X standard camera interface.
float m_maxEMGain
The configurable maximum EM gain. To be enforced in derivedT.
std::vector< std::string > m_readoutSpeedNames
float m_minExpTime
The minimum exposure time, used for INDI attributes.
pcf::IndiProperty m_indiP_roi_fullbin
Property used to trigger setting the full in current binning ROI.
float m_fpsSet
The commanded fps, as set by user.
int newCallBack_temp(const pcf::IndiProperty &ipRecv)
Callback to process a NEW CCD temp request.
int newCallBack_cropMode(const pcf::IndiProperty &ipRecv)
Callback to process a NEW cropMode request.
bool m_synchroSet
Target status of m_synchro.
pcf::IndiProperty m_indiP_roi_y
Property used to set the ROI x center coordinate.
int createReadoutSpeed(const mx::meta::trueFalseT< true > &t)
int m_full_currbin_w
The current-binning full ROI width.
int setShutter(int ss, const mx::meta::trueFalseT< true > &t)
Interface to setShutter when the derivedT has a shutter.
float m_default_x
Power-on ROI center x coordinate.
std::string m_tempControlStatusStr
Camera specific description of temperature control status.
float m_emGain
The camera's current EM gain (if available).
int m_full_bin_x
The x-binning in the full ROI.
int newCallBack_readoutSpeed(const pcf::IndiProperty &ipRecv)
Callback to process a NEW readout speed request.
std::vector< std::string > m_readoutSpeedNameLabels
float m_full_currbin_x
The current-binning full ROI center x coordinate.
int m_full_w
The full ROI width.
float m_emGainSet
The camera's EM gain, as set by the user.
std::string m_vShiftSpeedNameSet
The user requested vshift speed name, to be set by derived()
bool m_cropModeSet
Desired status of crop mode ROIs, if enabled for this camera.
int newCallBack_roi_bin_y(const pcf::IndiProperty &ipRecv)
Callback to process a NEW bin_y request.
std::string m_defaultReadoutSpeed
The default readout speed of the camera.
pcf::IndiProperty m_indiP_shutterStatus
State of the shutter. 0 = shut, 1 = open, -1 = unknown.
float m_expTime
The current exposure time, in seconds.
int setExpTime(const mx::meta::trueFalseT< true > &t)
Interface to setExpTime when the derivedT uses exposure time controls.
std::string m_nextMode
The mode to be set by the next reconfiguration.
pcf::IndiProperty m_indiP_tempstat
int m_default_bin_x
Power-on ROI x binning.
int m_default_w
Power-on ROI width.
int setTempControl(const mx::meta::trueFalseT< true > &t)
Interface to setTempControl when the derivedT has temperature control.
int newCallBack_roi_h(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_h request.
int recordCamera(bool force=false)
bool m_cropMode
Status of crop mode ROIs, if enabled for this camera.
float m_maxExpTime
The maximum exposure time, used for INDI attributes.
float m_stepFPS
The FPS step size, used for INDI attributes.
int newCallBack_mode(const pcf::IndiProperty &ipRecv)
Callback to process a NEW mode request.
int m_default_h
Power-on ROI height.
pcf::IndiProperty m_indiP_roi_last
Property used to trigger setting the last ROI.
pcf::IndiProperty m_indiP_temp
float m_expTimeSet
The exposure time, in seconds, as set by user.
pcf::IndiProperty m_indiP_roi_h
Property used to set the ROI height.
int m_full_h
The full ROI height.
pcf::IndiProperty m_indiP_synchro
int m_full_bin_y
The y-binning in the full ROI.
int checkNextROI(const mx::meta::trueFalseT< true > &t)
Interface to checkNextROI when the derivedT uses ROIs.
int setVShiftSpeed(const mx::meta::trueFalseT< true > &t)
Interface to setVShiftSpeed when the derivedT has vshift speed control.
float m_full_y
The full ROI center y coordinate.
static int st_newCallBack_stdCamera(void *app, const pcf::IndiProperty &ipRecv)
The static callback function to be registered for stdCamera properties.
float m_maxFPS
The maximum FPS, used for INDI attributes.
std::string m_readoutSpeedName
The current readout speed name.
float m_ccdTempSetpt
The desired temperature, in C.
bool m_tempControlStatus
Whether or not temperature control is active.
pcf::IndiProperty m_indiP_fps
int newCallBack_roi_last(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_last request.
int setupConfig(mx::app::appConfigurator &config)
Setup the configuration system.
pcf::IndiProperty m_indiP_roi_loadlast
Property used to trigger loading the last ROI as the target.
pcf::IndiProperty m_indiP_roi_w
Property used to set the ROI width.
int newCallBack_roi_set(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_set request.
pcf::IndiProperty m_indiP_roi_default
Property used to trigger setting the default and startup ROI.
int newCallBack_stdCamera(const pcf::IndiProperty &ipRecv)
The callback function for stdCamera properties.
std::string m_modeName
The current mode name.
pcf::IndiProperty m_indiP_reconfig
Request switch which forces the framegrabber to go through the reconfigure process.
int setSynchro(const mx::meta::trueFalseT< true > &t)
Interface to setSynchro when the derivedT has synchronization.
pcf::IndiProperty m_indiP_roi_bin_x
Property used to set the ROI x binning.
int newCallBack_roi_loadlast(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_loadlast request.
pcf::IndiProperty m_indiP_readoutSpeed
int setEMGain(const mx::meta::trueFalseT< true > &t)
Interface to setEMGain when the derivedT has EM Gain.
int newCallBack_vShiftSpeed(const pcf::IndiProperty &ipRecv)
Callback to process a NEW vshift speed request.
std::string m_startupMode
The camera mode to load during first init after a power-on.
pcf::IndiProperty m_indiP_roi_check
Property used to trigger checking the target ROI.
pcf::IndiProperty m_indiP_vShiftSpeed
int newCallBack_roi_check(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_check request.
int newCallBack_roi_x(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_x request.
float m_full_x
The full ROI center x coordinate.
float m_startupTemp
The temperature to set after a power-on. Set to <= -999 to not use [default].
int appLogic()
Application logic.
int m_full_currbin_h
The current-binning full ROI height.
int loadConfig(mx::app::appConfigurator &config)
load the configuration system results
std::string m_shutterStatus
pcf::IndiProperty m_indiP_exptime
int newCallBack_shutter(const pcf::IndiProperty &ipRecv)
Callback to process a NEW shutter request.
bool m_synchro
Status of synchronization, true is on, false is off.
std::string m_vShiftSpeedName
The current vshift speed name.
int newCallBack_roi_full(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_full request.
int setCropMode(const mx::meta::trueFalseT< true > &t)
Interface to setCropMode when the derivedT has crop mode.
pcf::IndiProperty m_indiP_emGain
float m_ccdTemp
The current temperature, in C.
int updateINDI()
Update the INDI properties for this device controller.
std::vector< std::string > m_vShiftSpeedNames
int newCallBack_fps(const pcf::IndiProperty &ipRecv)
Callback to process a NEW fps request.
std::string m_defaultVShiftSpeed
The default readout speed of the camera.
int newCallBack_roi_y(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_y request.
pcf::IndiProperty m_indiP_tempcont
bool m_tempControlOnTarget
Whether or not the temperature control system is on its target temperature.
int createVShiftSpeed(const mx::meta::trueFalseT< true > &t)
cameraConfigMap m_cameraModes
Map holding the possible camera mode configurations.
float m_stepExpTime
The maximum exposure time stepsize, used for INDI attributes.
int whilePowerOff()
Actions while powered off.
int setFPS(const mx::meta::trueFalseT< true > &t)
Interface to setFPS when the derivedT uses FPS controls.
int newCallBack_reconfigure(const pcf::IndiProperty &ipRecv)
Callback to process a NEW reconfigure request.
int newCallBack_emgain(const pcf::IndiProperty &ipRecv)
Callback to process a NEW EM gain request.
float m_full_currbin_y
The current-binning full ROI center y coordinate.
int appStartup()
Startup function.
int newCallBack_roi_bin_x(const pcf::IndiProperty &ipRecv)
Callback to process a NEW bin_x request.
std::vector< std::string > m_vShiftSpeedNameLabels
int setTempSetPt(const mx::meta::trueFalseT< true > &t)
Interface to setTempSetPt when the derivedT has temperature control.
pcf::IndiProperty m_indiP_roi_full
Property used to trigger setting the full ROI.
int newCallBack_synchro(const pcf::IndiProperty &ipRecv)
Callback to process a NEW synchro request.
int newCallBack_roi_default(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_default request.
pcf::IndiProperty m_indiP_roi_set
Property used to trigger setting the ROI.
int appShutdown()
Application shutdown.
pcf::IndiProperty m_indiP_shutter
Property used to control the shutter, a switch.
int newCallBack_roi_w(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_w request.
pcf::IndiProperty m_indiP_stateString
pcf::IndiProperty m_indiP_mode
Property used to report the current mode.
pcf::IndiProperty m_indiP_cropMode
Property used to toggle crop mode on and off.
float m_default_y
Power-on ROI center y coordinate.
int setNextROI(const mx::meta::trueFalseT< true > &t)
Interface to setNextROI when the derivedT uses ROIs.
pcf::IndiProperty m_indiP_fullROI
Property used to preset the full ROI dimensions.
bool stateStringValid(const mx::meta::trueFalseT< true > &t)
Interface to stateStringValid when the derivedT provides it.
float m_fps
The current FPS.
std::string stateString(const mx::meta::trueFalseT< true > &t)
Interface to stateString when the derivedT provides it.
pcf::IndiProperty m_indiP_roi_bin_y
Property used to set the ROI y binning.
pcf::IndiProperty m_indiP_roi_x
Property used to set the ROI x center coordinate.
int newCallBack_roi_fullbin(const pcf::IndiProperty &ipRecv)
Callback to process a NEW roi_fullbin request.
int newCallBack_temp_controller(const pcf::IndiProperty &ipRecv)
Callback to process a NEW CCD temp control request.
int newCallBack_exptime(const pcf::IndiProperty &ipRecv)
Callback to process a NEW exposure time request.
int setReadoutSpeed(const mx::meta::trueFalseT< true > &t)
Interface to setReadoutSpeed when the derivedT has readout speed control.
int m_default_bin_y
Power-on ROI y binning.
bool m_tempControlStatusSet
Desired state of temperature control.
float m_minFPS
The minimum FPS, used for INDI attributes.
int onPowerOff()
Actions on power off.
std::string m_readoutSpeedNameSet
The user requested readout speed name, to be set by derived()
~stdCamera() noexcept
Destructor.
@ OPERATING
The device is operating, other than homing.
@ READY
The device is ready for operation, but is not operating.
@ NOTCONNECTED
The application is not connected to the device or service.
@ POWERON
The device power is on.
std::unordered_map< std::string, cameraConfig > cameraConfigMap
int loadCameraConfig(cameraConfigMap &ccmap, mx::app::appConfigurator &config)
Load the camera configurations contained in the app configuration into a map.
std::string m_serialCommand
The command to send to the camera to place it in this mode.
std::string m_configFile
The file to use for this mode, e.g. an EDT configuration file.
void updateIfChanged(pcf::IndiProperty &p, const std::string &el, const T &newVal, indiDriverT *indiDriver, pcf::IndiProperty::PropertyStateType newState=pcf::IndiProperty::Ok)
Update the value of the INDI element, but only if it has changed.
void updateSelectionSwitchIfChanged(pcf::IndiProperty &p, const std::string &el, indiDriverT *indiDriver, pcf::IndiProperty::PropertyStateType newState=pcf::IndiProperty::Ok)
Update the values of a one-of-many INDI switch vector, but only if it has changed.
void updateSwitchIfChanged(pcf::IndiProperty &p, const std::string &el, const pcf::IndiElement::SwitchStateType &newVal, indiDriverT *indiDriver, pcf::IndiProperty::PropertyStateType newState=pcf::IndiProperty::Ok)
Update the value of the INDI element, but only if it has changed.
const pcf::IndiProperty & ipRecv
std::unique_lock< std::mutex > lock(m_indiMutex)
static constexpr logPrioT LOG_CRITICAL
The process can not continue and will shut down (fatal)
static constexpr logPrioT LOG_WARNING
A condition has occurred which may become an error, but the process continues.
static constexpr logPrioT LOG_ERROR
An error has occured which the software will attempt to correct.
#define CAMCTRL_E_NOCONFIGS