Effacer les filtres
Effacer les filtres

Stop ai manually

2 vues (au cours des 30 derniers jours)
Kay
Kay le 21 Juil 2011
Hi everyone,
I am using the DAQ toolbox to build a negative feedback system. Anyhow, Is there any method to stop the ai by typing stop(ai); ? I want to stop the data acquisition by hand instead of setting the SamplePerTrigger.
Thank you, Kay

Réponse acceptée

Chirag Gupta
Chirag Gupta le 21 Juil 2011
Hi Kay,
This is possible. Here is some sample code:
ai = analoginpt(....);
% Add channels and set it up
% Use SamplesPerTrigger property to achieve this by setting it to Inf
ai.SamplesPerTrigger = Inf;
start(ai)
% This will continue unless a stop(ai) command is issued
Documentation link for SamplesPerTrigger
You may also want to refer to 'Continuous Acquisition Using Analog Input' demo in the documentation that covers the same scenario
  3 commentaires
Chirag Gupta
Chirag Gupta le 21 Juil 2011
I would suggest looking at the demo! Also, how are you running it? Can you post some sample code?
Chirag Gupta
Chirag Gupta le 21 Juil 2011
After running the stop(ai) command, check the value of ai.Running
or isrunning(ai)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Acquisition Toolbox Supported Hardware dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by