10#include "../../libMagAOX/libMagAOX.hpp"
11#include "../../magaox_git_version.h"
74 std::chrono::time_point<std::chrono::high_resolution_clock>
m_time_start;
93 mx::app::appConfigurator &
_config
182 config.add(
"accel.numChannels",
190 "Setting the number of channels needed to readout accelerometers" );
264 m_time_start = std::chrono::high_resolution_clock::now();
277 auto now = std::chrono::high_resolution_clock::now();
323 if(
ipRecv.getName() != m_indiP_fps.getName() )
325 log<software_error>( { __FILE__, __LINE__,
"wrong INDI property received." } );
331 if( indiTargetUpdate( m_indiP_fps, target,
ipRecv,
true ) < 0 )
333 log<software_error>( { __FILE__, __LINE__ } );
unsigned short read(const std::uint8_t channel, const Mode m=Mode::SINGLE) const
The base-class for MagAO-X applications.
int m_shutdown
Flag to signal it's time to shutdown. When not 0, the main loop exits.
static int log(const typename logT::messageT &msg, logPrioT level=logPrio::LOG_DEFAULT)
Make a log entry.
uint32_t m_width
The width of the image, once deinterlaced etc.
int recordFGTimings(bool force=false)
uint8_t m_dataType
The ImageStreamIO type code.
bool m_reconfig
Flag to set if a camera reconfiguration requires a framegrabber reset.
uint32_t m_height
The height of the image, once deinterlaced etc.
The MagAO-X MCP3008 Controller.
MCP3008Lib::MCP3008 m_adc
virtual int appLogic()
Implementation of the FSM for mcp3008Ctrl.
virtual void setupConfig()
int loadConfigImpl(mx::app::appConfigurator &_config)
Implementation of loadConfig logic, separated for testing.
friend class mcp3008Ctrl_test
mcp3008Ctrl()
Default c'tor.
INDI_NEWCALLBACK_DECL(mcp3008Ctrl, m_indiP_fps)
virtual void loadConfig()
virtual int appShutdown()
Shutdown the app.
static constexpr bool c_frameGrabber_flippable
int acquireAndCheckValid()
Implementation of the framegrabber acquireAndCheckValid interface.
dev::telemeter< mcp3008Ctrl > telemeterT
std::vector< float > m_values
The values read out from the chip.
dev::frameGrabber< mcp3008Ctrl > frameGrabberT
int recordTelem(const telem_fgtimings *)
float m_trigger
The trigger time to readout. Adjusts to match desired FPS.
int loadImageIntoStream(void *dest)
Implementation of the framegrabber loadImageIntoStream interface.
int startAcquisition()
Implementation of the framegrabber startAcquisition interface.
std::chrono::time_point< std::chrono::high_resolution_clock > m_time_start
pcf::IndiProperty m_indiP_fps
virtual int appStartup()
Startup function.
float m_fps
The target FPS.
~mcp3008Ctrl() noexcept
D'tor, declared and defined for noexcept.
int configureAcquisition()
Implementation of the framegrabber configureAcquisition interface.
int reconfig()
Implementation of the framegrabber reconfig interface.
float fps()
Implementation of the frameGrabber fps interface.
int m_numChannels
The number of channels being read out.
#define FRAMEGRABBER_SETUP_CONFIG(cfig)
Call frameGrabberT::setupConfig with error checking for frameGrabber.
#define FRAMEGRABBER_APP_LOGIC
Call frameGrabberT::appLogic with error checking for frameGrabber.
#define FRAMEGRABBER_APP_SHUTDOWN
Call frameGrabberT::appShutdown with error checking for frameGrabber.
#define FRAMEGRABBER_LOAD_CONFIG(cfig)
Call frameGrabberT::loadConfig with error checking for frameGrabber.
#define FRAMEGRABBER_APP_STARTUP
Call frameGrabberT::appStartup with error checking for frameGrabber.
#define INDI_NEWCALLBACK_DEFN(class, prop)
Define the callback for a new property request.
#define CREATE_REG_INDI_NEW_NUMBERF(prop, name, min, max, step, format, label, group)
Create and register a NEW INDI property as a standard number as float, using the standard callback na...
const pcf::IndiProperty & ipRecv
static constexpr logPrioT LOG_NOTICE
A normal but significant condition.
A device base class which saves telemetry.
Log entry recording framegrabber timings.
#define TELEMETER_APP_LOGIC
Call telemeter::appLogic with error checking.
#define TELEMETER_LOAD_CONFIG(cfig)
Call telemeter::loadConfig with error checking.
#define TELEMETER_APP_STARTUP
Call telemeter::appStartup with error checking.
#define TELEMETER_SETUP_CONFIG(cfig)
Call telemeter::setupConfig with error checking.
#define TELEMETER_APP_SHUTDOWN
Call telemeter::appShutdown with error checking.