I am using QA401 & QA403. for automatic audio tests by C#.
To run the test I used Post(“/Acquisition”) API to measured audio. For few tests I need continues API. (start and stop).
please advise if there is any API that I can use?
Hi @dudu123, there’s not a way to tell it to run continuously, but since you are controlling via code why not just write your own routine to run an acquisition over and over until halted? And juust curious, why do you want it to run over and over if you aren’t doing anything with the measurements?
Hi Matt
I explain why I needed.
In our product we have tone detector. I supply continues audio and need to check the output of the detector. Now I use routine of running acquisition over and over (as you say) and go to detect the output this append because I use “Thread” in the code but sometimes is not stable.
So if was API that I can start and stop the audio I can go handle the output detect without using “Thread”.
Hi @dudu123, OK I think I understand. But if you start the running, there’s no way for you to get the data of each acquisition. There’s no notion of a callback that will be called after each acquisition.
You should be able to get another thread to do this. Are you using c#?