Author Topic: Siglent SDG1025 MATLAB Programming ARB Waveform?  (Read 7969 times)

0 Members and 1 Guest are viewing this topic.

Offline HaloArchiveTopic starter

  • Newbie
  • Posts: 1
  • Country: us
Siglent SDG1025 MATLAB Programming ARB Waveform?
« on: December 21, 2015, 10:21:25 pm »
Hello All,

I have been playing around with the SDG1025 for a few months now and was wondering if anyone has some code to generate and then upload an arbitrary waveform to the SDG1025 via MATLAB? I know that there are a few Agilent examples floating around but there obviously isn't much for Siglent.  I know how to use SCPI commands to control the waveforms through the VISA interface, but would really like to see an example of uploading arbitrary waveform via MATLAB.

Thanks!
 

Online tautech

  • Super Contributor
  • ***
  • Posts: 28142
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #1 on: December 21, 2015, 11:09:44 pm »
Welcome to the forum.

Links to Siglent's Matlab drivers
http://www.siglentamerica.com/gjjrj.aspx?id=204

From the Matlab site:
Control and Configure Function Generators:
https://www.mathworks.com/products/instrument/supported/function-generator.html

A UART example from Siglent I've had for a while: (not verified, also attached below)

Code: [Select]
32'h3E_EA20;     //dds:fc*2^32*10/100MHz,3E_EA20 for 9600b/s
      i_uart_idle_en=2'b00;        //among char bit,00 for no idle bit ,01 or 10 for random     //idle within 3bit,11 for stably 2 bit   
      i_uart_parity_random= 0;     //1 means random parity bit,0 means right parity bit
      i_uart_dwidth = 8;           //the character bit number from 5---9
      i_tri_data_num = 16;         //the bit number 1-32
      i_uart_parity = 2'b00;       //01 or 10 for no parity, 00 for odd,11 for even
      i_uart_stopbit = 2'b00;      //00 for 1 bit,01 or 10 for 2 bit,11 for 1.5 bit
      i_uart_polarity = 1'b1;      //0 for the idle low and 1 for the idle high
      i_tri_data = 32'h8e_f1_94_5f;//the input data to compare with the rxd data and to       //generate the rxd data
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 

Offline ivan747

  • Super Contributor
  • ***
  • Posts: 2045
  • Country: us
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #2 on: December 23, 2015, 03:49:34 am »
That is very nice, Tautec. I'll give it a try.

 

Online tautech

  • Super Contributor
  • ***
  • Posts: 28142
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #3 on: December 23, 2015, 04:02:44 am »
That is very nice, Tautec. I'll give it a try.
Ivan, I have many more unfortunately they're all bus types: Can, I2C etc.
Also many have Chinese //rems

I''l hunt out a few and post them.
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 

Offline ivan747

  • Super Contributor
  • ***
  • Posts: 2045
  • Country: us
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #4 on: December 30, 2015, 09:51:20 pm »
That is very nice, Tautec. I'll give it a try.
Ivan, I have many more unfortunately they're all bus types: Can, I2C etc.
Also many have Chinese //rems

I''l hunt out a few and post them.

Code is code ;)
 

Online tautech

  • Super Contributor
  • ***
  • Posts: 28142
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #5 on: December 31, 2015, 12:11:39 am »
UART files attached, Rems in English
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 

Online tautech

  • Super Contributor
  • ***
  • Posts: 28142
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #6 on: December 31, 2015, 12:17:09 am »
SPI files attached
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 

Online tautech

  • Super Contributor
  • ***
  • Posts: 28142
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #7 on: December 31, 2015, 12:20:06 am »
LIN files attached
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 

Online tautech

  • Super Contributor
  • ***
  • Posts: 28142
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #8 on: December 31, 2015, 12:24:52 am »
I2C files attached
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 

Offline ivan747

  • Super Contributor
  • ***
  • Posts: 2045
  • Country: us
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #9 on: December 31, 2015, 01:07:12 am »
Tautech, I only see the Labview drivers on the link you gave, am I missing something?

I am guessing those files are really .m files and they go together.
 

Offline ivan747

  • Super Contributor
  • ***
  • Posts: 2045
  • Country: us
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #10 on: December 31, 2015, 01:13:26 am »
I'm gonna take a guess and say it's the "Siglent SDG 1000 5000 800 Series Signal Generator Certified LabVIEW Plug and Play" driver because of its recent release and 1.0 version.


...
...
...
It wasn't.
 

Online tautech

  • Super Contributor
  • ***
  • Posts: 28142
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Siglent SDG1025 MATLAB Programming ARB Waveform?
« Reply #11 on: December 31, 2015, 01:49:09 am »
I'm gonna take a guess and say it's the "Siglent SDG 1000 5000 800 Series Signal Generator Certified LabVIEW Plug and Play" driver because of its recent release and 1.0 version.


...
...
...
It wasn't.
All the SDG (AWG's) drivers are lower down on the driver page, just be sure to select the correct series, 800, 1000 or 5000
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf