I am using the component works CWCounter control to measure the frequency of a quadrature signal being fed into my PCI-6602 card. My CWCounter setup currently looks like
m_spCounter->Device = 1;
m_spCounter->MeasurementType = CWDAQControlsLib::cwctrFrequency;
m_spCounter->GateWidth = 10;
m_spCounter->Configure();
// Advise the AcquiredData() event here
m_spCounter->Start();
This results in only one event being called after ten seconds. How do I make the CWCounter report frequency ever 10 seconds until I call Stop()?