analogdevicesinc / pyadi-iio

Python interfaces for ADI hardware with IIO drivers (aka peyote)

Home Page:https://analogdevicesinc.github.io/pyadi-iio

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

typo in ad7124.py

jbeale1 opened this issue · comments

Line 74 of this file has a typo: https://github.com/analogdevicesinc/pyadi-iio/blob/master/adi/ad7124.py
there is an extra underscore in an object member:

for ch in self._ctrl._channels: should actually be
for ch in self._ctrl.channels:

having made this correction, I got the example code to work. It did not work until I made this fix. I'm using a Raspberry Pi 3B running the current Kuiper Linux distribution as of yesterday (16-Sep-2022), so I assume that setup should have worked as-is.

Thanks for reporting. Looks like this is a leftover from the older bindings.

If you want to submit your change we can merge it today.

-Travis

I have not actually done a pull request on github before. The only change I made to the file is that one character on line 74.

I have attempted to make a pull request for this change. #377