Jump to content

attila

Technical Forum Moderator
  • Posts

    6,450
  • Joined

  • Last visited

Everything posted by attila

  1. @malexander Could you help with this ?
  2. Hi @sng2024 The AD3 scope input have a high range of ~50V peak to peak and with offset adjustment can read +/-50V The probe attenuation can be specified with the Probe option under each channel option.
  3. Hi @scorbetta I was suspecting to find multiple variants from this library, but it finds only one. I don't know why it is for you installed in /usr/local/lib64 Have you downloaded it from our site ? https://digilent.com/reference/software/adept/start The location shouldn't matter but it is strange since the adept.runtime...deb uses /usr/lib64
  4. Hi @SergeLafontaine The latest version is notarized, it should pass security:
  5. Hi @Kyoko J If you are using the Analog Discovery Impedance Analyzer adapter, the connections are in this. J2 is the connector for Device Under Test, Load https://digilent.com/reference/add-ons/impedance-analyzer/start https://digilent.com/reference/add-ons/impedance-analyzer/reference-manual https://digilent.com/reference/add-ons/impedance-analyzer/getting-started-guide
  6. What does the ldconfig -p | grep libdmgr list ?
  7. Hi @bobql See the following post:
  8. Hi @scorbetta The mentioned function should be in the latest adept.runtime Make sure the install succeeds, there are not errors listed sudo apt install ./digilent.adept.runtime_2.27.9-amd64.deb
  9. Hi @Roche The frequency adjustment is intended for the Pattern Generator and Protocols. The device can generate natural division signals of the system frequency, like from 100MHz, 50, 25... and with 80MHz 40, 20... The Logic Analyzer can sample at up to 8x of system frequency.
  10. Hi @gcb The instructions are the same or similar for newer VS versions. You can build app for x86, x64, arm64 or arm64ec, just use the corresponding dwf.lib dependency under project/Properties/Linker/Input
  11. Hi @gcb 1. Wavegen/Play 2. Logic Analyzer/ Mode: Play
  12. Hi @fahiz The amount of data may be too much for the graph function used. You may need a different method for drawing.
  13. Hi @malexander Only the new builds are signed, since 3.22.14, with the same key as adept.
  14. Hi @AndayLe The FDwfAnalogImpedancePeriodSet is for different purpose.
  15. Hi @CAM C The record mode uses data streaming. Since it doesn't know when the trigger will arrive it starts streaming immediately and stop after the given 'length'. This is why the samples collected in the software buffer need to be aligned at the end, see AnalogIn_Record_Trigger.py example. With position 0 the streaming starts with the trigger. The acqmode single returns a buffered aligned capture, up to maximum sample rate and device buffer size.
  16. Hi @malb Currently the latest build for ARM Linux is 3.22.15
  17. Hi @fahiz @Fausto Why are you limited to 0.2 sec ? with 1.5M samples and 1.5MHz capture rate the span in 1sec If you are interested in peaks you can use min/max sampling mode (FDwfAnalogInChannelFilterSet), less samples and lower frequency. The sampling rate should be at least 4 times than signal frequency, otherwise you see aliasing. https://www.ni.com/docs/en-US/bundle/labwindows-cvi/page/advancedanalysisconcepts/aliasing.html
  18. Hi @AndayLe The above should work. Make sure the device opening succeeded, the function return is 0 and/or hdwf is not 0. What are you doing after starting the generator ? If your the program quits the device is closed and outputs are by default stopped. Use software wait or use: dwf.FDwfParamSet(DwfParamOnClose, c_int(0)) # continue running after close
  19. Hi @jostikas I added information to the Help.
  20. Hi @philip.mcconnell You can use the Script tool or View/Logging for this purpose. Scope.single(); Scope.wait(); var ch1 = Scope.Channel1.fftmagnitude; var ref = Scope.Ref1.fftmagnitude; var hz = Scope.Ref1.fftfrequency; var c = ref.length; clear(); for(var i = 0; i < c; i++){ if(ch1[i] > ref[i]+2.0) print(hz[i],ch1[i],ref[i]); }
  21. Hi @AndayLe You can set FDwfAnalogOutRunSet to 15.0 and FDwfAnalogOutRepeatSet to 1. You may also want FDwfAnalogOutIdleSet DwfAnalogOutIdleOffset
×
×
  • Create New...