Jump to content

attila

Technical Forum Moderator
  • Posts

    6,450
  • Joined

  • Last visited

Everything posted by attila

  1. Hi @AHT Did you attach the 'Digilent USB Device' to the virtual machine ?
  2. Hi @mikeyc Uncomment your 'result = dwf.FDwfAnalogOutConfigure(hdwf, channel, c_int(1))'
  3. Hi @Kodeeswaran S Could you also share the script code you wrote?
  4. Hi @joshna I don't recommend using this "WF_SDK" Looking at the code: with scope.record you perform separate captures for each channel, although it would be better to retrieve the channels data from the same capture; the scope.open has 'amplitude_range' parameter I don't know why you are reading 30V... See the real WaveForms SDK manual and examples:
  5. Hi @Luke Aldrich The demo mode is intended to explore the application and device options; triggering, record... are not its strengths. The ADP2230, AD3X50 have deep onboard memory so even if the computer is slow on data transfer or storage it should be able to capture up to device buffer size lossless.
  6. Hi @BSc For ADP3X50 embedded Linux use digilent.waveforms.adp3X50_x.x.x_armhf.deb
  7. Hi @Dinu 1. The Protocol/UART does not have auto rate option. The continuous Spy mode on multiple UART lines is not suitable for high rates specially with Digital Discovery since this does not support data compression. 2. FileAppend("~/Desktop/uart.csv", Logic.Channels.UART.events.join(""));
  8. Hi @HasNoCreek The easiest way, if ms precision is sufficient, would be software control using FDwfDigitalIO... functions. You can use digital-out function for automated precise control, see FDwfDigitalOut... functions. For fully independent control the analog-out functions can also be used, see FDwfAnalogOut... functions.
  9. Hi @aaaaa You can use the Script tool like this: Impedance.run(); var t0 = Date.now() for(var i = 0; wait(0.999) && i < 1000; i++){ // wait 999ms var v = (Date.now()-t0)+","+Impedance.Traces.Trace.getData("Impedance")[0]; print(v); // ms, ohm FileAppendLine("~/Desktop/imp.csv",v); }
  10. Hi @gcb Continuous digital play is not available with any device. The Digital Discovery has Play mode for up to 256MiB of data. Other device support 'unlimited' AWG Play which could also be used as 1bit digital line. Analog Discovery with 32k device buffer up to about 4MS/s. ADP3X50 has 32Mi AWG sample device buffer, ADP2230 has 128Mi buffer and USB3.
  11. Hi @bryan78 Thanks for the observation.
  12. Hi @pfm Corrected here: I accidentally left it there in the previous version when trying to make it compatible with other RPM distributions. Unfortunately the packages have different naming in repositories.
  13. Hi @bryan78 It is corrected in the latest version:
  14. Hi @Sam S. For Network Analysis triggering is usually not important but your trigger settings seems to be ok. For stability, to not to trigger on opposite edge due to noise, you can use FDwfAnalogInTriggerHysteresisSet. Better use trigsrcAnalogOut1. The NA interface uses this for coherent averaging. You could also apply to FDwfAnalogImpedance... functions which can be used for NA, see the example. Crosstalk depends on the setup. Leaving the high impedance oscilloscope inputs open, specially with wires attached will catch more noise and crosstalk. Use BNC cables or twist positive/negative inputs and signal wires with ground for better noise rejection and less crosstalk.
  15. Hi @rjratnip It could be a similar hub or driver problem as it is with RPi1,2,3 where FTDI USB packets are randomly lost or corrupt.
  16. Hi @woldes The I2C should be read as logic high in idle. Do you have pull-ups on the SCL and SDA ?
  17. Hi @m72 Set the UART Baud to Manual. With Auto the Rate is recalculated for each capture which is handled as configuration change and the Buffer counter is restarted. It will be corrected in the next version.
  18. Hi @StefKay Looking at the project, unfortunately there are no clock capable DIOs, so reference clock for device synchronization is not really possible with EclypseZ7.
  19. Hi @GCompton You can use Logging/Script or the Script tool for custom export.
  20. Hi @GCompton With the current sw version you can select Trigger 1 to output 'Scope Detector' and select Sampling Clock T1 This will store one sample for each trigger event with 15 cycle delay, 150ns delay for 100MHz or 120ns with 125MHz system frequency. The next version will let you select directly 'Scope Detector' as Sampling Clock.
  21. Hi @Rohan16 If you referring to the SPI mode with '0th clock pulse' ? This can be adjusted with Polarity and Phase options.
  22. Hi @StefKay It looks like dual mode with reference clock is not supported with EclypseZ7. I will try to add support for this next week.
  23. Hi @rjratnip 1. It could be an adapter/cable contact problem. 2. The AUX supply can only be blocked by the the under/overvoltage 4.11V/5.76V protection circuit. You could have a grounding issue. Are the RPi and 5V supplies floating or grounded ? If both are grounded make sure to use nearby sockets, same splitter. With the default 'USB Power' 'Stop with AUX' the USB supply line is turned off if the AUX voltage is ok, 4.5V...5.5V If this option is 'Always ON' the USB and AUX currents will balance according the voltage/cabling resistance. If the USB voltage is higher than AUX, the AUX current will be lower. Verify the voltage of your supply or use powered HUB.
  24. Hi @Rohan16 The embedded JavaScript does not support binary number format but the interface does.
×
×
  • Create New...