Hi,
I am exploring the tutorial about the new acquisition driver. Driver was automatically generated and placed where specified.
I have registered my driver in: ovasCAcquisitionServerGUI.cpp (header and vector)
Do I need to register the configuration "CConfigurationTestDriver"? This is what I missed last time.
Code:
boolean CDriverTestDriver::initialize(
const uint32 ui32SampleCountPerSentBlock,
IDriverCallback& rCallback)
{
assert(&m_rDriverContext!=NULL);//fails here
if(m_rDriverContext.isConnected()) return false; //actually here
if(!m_oHeader.isChannelCountSet()||!m_oHeader.isSamplingFrequencySet()) return false;
Currently my code fails with m_rDriverContext being NULL.
Please advise.
-Anton