How do I REST call User generator?

Hi Matt,

I’ve spent quite a while trying to figure out how to REST call the QA403 generator with a user defined signal with just no success. Is there any chance you could provide a small working C# snippet that I could insert and start testing with?

The REST documentation is very sparse. I tried using the TEST REST application but first it crashed when I tried it so I built the application here and then it didn’t crash but it also didn’t output any user signal - it just sent whatever the generator had set prior. When I call it with the documented syntax it outputs nothing and there’s no error result - quite the opposite it returns a SessionId and 0. Trying other syntactical stuff (like adding a Dx) didn’t help.

Thank you,
Mark

1 Like

Hi @MarkZ,

Take a look around line 353 of the QA402_REST_TEST file linked below. The way it works is that if you generate an array of doubles, and then convert those to base64 and send that to the QA40x app via REST, then the QA403 hardware will “play” the waveform you specify. The doubles are the actual voltage you want. So, an array of doubles with sin that peaks at +/- 1.41, then you’ll measure 1Vrms on the output

1 Like

Thanks for your reply.

I absolutely tried the test application already and it didn’t work for me. Could you please ensure it does what you think? When I tried these exact lines of code it produced no output afaik.

To test this over the weekend, I downloaded the Rest Test app from github and compiled it and ran it here. When I ran it I checked the time and frequency results from the acquired data and they had nothing in them other than noise. Am I just totally missing something?

By the way, I’m not sure I know what left and right are in the acquisition call. Can you send different output to each channel?

Here’s a shot of my visual studio run taken now

I have a kind of loopback connection (balanced left input, unbalanced right input)

1 Like

Exact same setup but here my code uses the sine generator with a 1V signal…

Hi @MarkZ, make sure the size of the buffers you are preparing match the size of the FFT you have selected, and that they are both powers of two. I just cloned RESTTEST, ran it, pushed the POST /Acquisition w/User Data button while the main QA40x app was set to 32K fft. Nothing came out. Then, I set the main app to 8K fft, pushed the same button again, and the clipped waveform appeared on my scope.

I updated the REST localhost webpage to indicate the buffer size needs to match, and also pushed up a new version of the QA402_REST_TEST with an explicit call to set the buffer in the UserSubmittedStimulus().

Can you see if this fixes your issue? Thanks very much for reporting!

1 Like

Yes, that’s correct. if you write your own code, you can independently control the left and right channels. You can send a square to the left channel, and a triangle the right channel, for example.

3 Likes

Yay! Thank you so much. I never would have worked that out. Woohoo.

-Mark

I guess it goes without saying that worked : )

1 Like

Yes, you and me both. Discoverability on that was borderline impossible for sure!

2 Likes