Jump to content

attila

Technical Forum Moderator
  • Posts

    6,486
  • Joined

  • Last visited

Everything posted by attila

  1. Hi @Stephen Creswell The restrictions in the agreement are only to prohibit the use of free Digilent software with cloned hardware. There is no restriction for your application to be used without Digilent product or other products, only the Digilent provided software (application, libraries...) should be used together with Digilent hardware.
  2. Hi @Leo_W The DCFG_07_01_01.bin ! file should be programmed to the QSPI or copied to the SD card. The PL will be programmed only on software connection, so the PLGOOD will not light up on PS boot.
  3. Hi @Bnm Which WaveForms version are you using? I've just tested the AD2 calibration with WF v4.18.1 and v4.18.49 bot are working fine. Use the links to calibrate it step by step ...
  4. Hi @abia Use Ctrl+Space in Script tool or see the toolbar:
  5. Hi @LJH See the following: adp3450.py I've added trigger for analog-in, changed analog-out to custom mode since the number of samples fits in the buffer, changed the rate and run length
  6. Hi @towen This seems to be an unique (hub or driver) bug in earlier versions of RPIs since it is working fine with other SBC and computers. Reducing the transfer lengths and packing reduces the IN transfer oddness on RPI.
  7. Hi @towen See the WF SDK: This API mostly handles raw data and processing (like measurements) need to be done in custom app/script. The API provides some functions for Network-Impedance Analysis and Spectrum/FFT processing.
  8. Hi @AlanB Until this bug is solved use the following workaround, call DataSet twice, before and after Configure. FDwfDigitalOutPlayDataSet FDwfDigitalOutConfigure FDwfDigitalOutPlayDataSet
  9. Hi @TheStumbler Interpretation of CANFD it is not yet supported but you can probably use the existing CAN interpreter/protocol to see the raw data.
  10. Hi @Tiffany If you are looking for the AD2 AWG output impedance, this is zero ohms: https://digilent.com/reference/test-and-measurement/analog-discovery-2/hardware-design-guide#awg_out
  11. Hi @SHall Probably some underlying OpenGL drivers are missing or not compatible with the 3D library.
  12. Hi @Alicia865 1. This is what the above script does. 2. No, the csv files appear immediately when the script calls the export function. 3. When pressing the export menu or calling the function the current data is save, what you see is what you get. You could write a script to append data to file, see the Help tab/ Script/ File functions There are various export sources, the "Impedance Analyzer" contains all the opened views and traces. A constant frequency can also be used, like here 10s average and 60 steps will take about 10minutes, if this is what you are looking for.
  13. Hi @Jklaus80211 In Wavegen you have the Basic mode with slider. In Scope and other interfaces the axis-scale can be used just like a slider... dragged with mouse, keyboard arrow keys, mouse wheel used, w/o Ctrl/Shift key for speed and Alt for swapping offset/range adjustment. The entry fields (combo-boxes) can be adjusted with mouse wheel. In newer beta version Ctrl/Shift key can be used for faster/slower adjustment speed.
  14. Hi @Kirsan The next version will add line style option for the cursors. The cursor thickness is adjusted together with the plot width option.
  15. Hi @DanM Have you tried specifying shorted pulse length? Like with 50MHz and 24bits the transfer length is only around 500ns.
  16. Hi @AFEdebug For such low amplitude signals you should use some attenuation like resistive voltage divider.
  17. Hi @Alicia865 You can use a short script to automate the export like this: // 1 hour = 60min * 60sec * 1000ms for(var i = 0, end = Date.now()+60*60*1000; end > Date.now(); i++){ Impedance.single(); if(!Impedance.wait()) break; // wait for or exit on stop print(i); Impedance.Export("~/Desktop/ia/file"+i+".csv", "Impedance Analyzer", false); }
  18. Hi @sdourmashkin For MacOS the dwf.framework bundle contains WaveForms and Adept Runtimes but for Windows and Linux these can't be packaged, need to be installed in specific system path, drivers installed... So for Windows and Linux install WF which contains WF and Adept Runtimes.
  19. Hi @PhilipJ In Repeated and Scan capture modes the trigger position and time base adjustment will affect the next capture. In Record mode these can be configured with the Config button before Record. For search use Filter option in the View/ Event and you may can configure Hexadecimal, HexASCII, ASCII format under the UART channel properties. The next version will support triggering on up to 3 consecutive chars.
  20. Hi @Jan Petrik You can use parseInt(text, base) like parseInt("101", 2) The embedded JS can't be updated.
  21. Hi @towen In Logger the selected and checked channels are drawn. The attenuation can be specified under the gear option. Custom channels can be added under the plus button / Function. The Scope offers Math channels (function performed on each sample) and Measurements (performed on capture, on array of samples).
  22. Hi @m72 Thank you for the observation. It will be corrected in the next version.
  23. Hi @vanasupa It is probably a USB cable contact issue, try using other cable, adaptor, hub... The USB power can be monitored in the application status or Supplies tool.
  24. Hi @marle12 Reducing the frequency from the Properties tab will add maximum delay (~70ns + 0 to 1/freq) but this combined with a shift logic you can get ~70ns + (shifts-1)/freq + 0 to 1/freq Like here with 3rd DIO 70ns + 2x10us + 0..10us but you can use up to 9 or 13 DIOs (with the 4th or 7th device config) if you want. You can uncheck the "state output" option if you don't need it.
  25. Hi @Dante You could use eval function but I recommend using workspaces with script.
×
×
  • Create New...