Jump to content

ssm

Members
  • Posts

    65
  • Joined

  • Last visited

Everything posted by ssm

  1. Hi @attila I did install digilent.adept.runtime but I keep getting an error when I try to install digilent.waveforms_3.17.1_arm64.deb because of this dependency, please see below, please can you point me to a solution? thank you I keep getting the following: pi@raspberrypi:~ $ sudo apt-get install digilent.adept.runtime Reading package lists... Done Building dependency tree Reading state information... Done digilent.adept.runtime:armhf is already the newest version (2.26.1). 0 upgraded, 0 newly installed, 0 to remove and 15 not upgraded. pi@raspberrypi:~ $ sudo dpkg -i digilent.waveforms_3.17.1_arm64.deb Selecting previously unselected package digilent.waveforms. (Reading database ... 88550 files and directories currently installed.) Preparing to unpack digilent.waveforms_3.17.1_arm64.deb ... Unpacking digilent.waveforms (3.17.1) ... dpkg: dependency problems prevent configuration of digilent.waveforms: digilent.waveforms depends on digilent.adept.runtime (>= 2.26.1). dpkg: error processing package digilent.waveforms (--install): dependency problems - leaving unconfigured Processing triggers for gnome-menus (3.31.4-3) ... Processing triggers for desktop-file-utils (0.23-4) ... Processing triggers for mime-support (3.62) ... Processing triggers for man-db (2.8.5-2) ... Processing triggers for shared-mime-info (1.10-1) ... Errors were encountered while processing: digilent.waveforms
  2. Dear Help, is it possible to compile the SDKs to operate the AD2 board from Raspbian (raspios_arm64)? please can you point out any reference or manual to compile it, I am using both scopes and WaveGen thank you, ssm
  3. Dear Help, I have AD2, using WaveGen and Scope, programmed using the SDK libraries under Ubuntu. I am reading data using the following code: for(int iTrigger = 0; iTrigger < EXP->NoAcquisitions; iTrigger++){ printf("Iteration Number = %d \n",iTrigger); // begin acquisition FDwfAnalogInConfigure(hdwf, false, true); FDwfAnalogOutConfigure(hdwf, 0, true); while(true){ FDwfAnalogInStatus(hdwf, true, &sts); if(sts == DwfStateDone) { break; } } FDwfAnalogInConfigure(hdwf, false, false); FDwfAnalogOutConfigure(hdwf, 0, false); // acquisition done, samples should be taken from the buffer // get the samples for two channels FDwfAnalogInStatusData(hdwf, 0, EXP->ScopeC0Samples, AD2ScopeBufferSize); FDwfAnalogInStatusData(hdwf, 1, EXP->ScopeC1Samples, AD2ScopeBufferSize); // doing some work on the collected data } Now the size of the scope buffer is configured to be 8192, but I only need to read 605 samples, reading all 8192 samples is taking time, is there a way to stop at the specific number of samples and read them? thank you, ssm
  4. Dear Help, I have been using AD2 on Mac, and things are working perfectly, is there any resources on the compilation of AD2 SDK on Ubuntu? is it possible to run on Ubuntu? thank you for the help, ssm
×
×
  • Create New...