analogdevicesinc / libsmu

Software abstractions for the analog signal exploration tools.
http://analogdevicesinc.github.io/libsmu/
BSD 3-Clause "New" or "Revised" License
32 stars 31 forks source link

Incompatability with ALICE #114

Closed rgw3d closed 6 years ago

rgw3d commented 6 years ago

With a fresh install of libsmu on Ubuntu 16.04, I am unable to get ALICE to work. PixelPulse2 works perfectly. Firmware of my ADALM1000 is up to 2.06.

Specifically, this is the download of Alice1.1. In the alice-desktop-1.1.pyw it seems to be calling either old python bindings. Executing ./alice-desktop-1.1.pyw just doesn't work.

I should add that I can get it run if I change the source around to reflect correct python bindings. from pysmu import * works fine.

Everything is being run with python2.7

I am unsure if this is the right place to post this issue, but figured I would start here.

claudiupop commented 6 years ago

ALICE 1.1 doesn't work with the latest version of libsmu. To make ALICE work you have to use an older version of libsmu. You can download the source code from https://github.com/analogdevicesinc/libsmu/archive/b6bc6cb.zip or if you cloned the repository use git checkout b6bc6cb

rgw3d commented 6 years ago

That solved it! Thank you!