Dan Nechita
Dan Nechita
I have seen this behavior on systems where there was no graphic acceleration (such as virtual machines) but Qt managed to switch to a software graphic renderer. It would help...
Thanks Jonathan! It looks that your system has more than enough graphic resources. I will keep investigating. Once you start seeing these glitches, do they persist for a while? or...
If by raw you mean frames coming directly from ADSD3500, then yes, there is a way. For this you would need to go back to version 4.3.0 of the SDK....
No need to downgrade the firmware. It should work with firmware version 5.0.0.
> I know this works on gcc, but have not tested on clang, or on MSVC yet. Feedback welcome. On Windows it doesn't work but it can be easily fixed...
> `Missing SPDX: deps/libini/libini.c, deps/libini/ini.h` > > I don't know if you want me to fix that locally as part of this patchset? or wait for @pcercuei to have a...
> > From a technical point of view, you can't touch the files from deps as you would for a regular source file. > > @dNechita - do you want...
The functions should target an attribute instead of a channel, but I understand your idea. The functions could then be like this: ``` ssize_t iio_attr_range_get_min(const struct iio_attr *attr) ssize_t iio_attr_range_get_step(const...
Essentially, instead of reading the available list like this: `iio_attr_read_raw()` It would be read like: `iio_attr_available_get_list()` But users still need to guess a size where the list should fit and...
Hi, To answer the question in the title, yes, iio_err() returns 0 for NULL pointers. This can be seen here: https://github.com/analogdevicesinc/libiio/blob/aa867f0a5c9d818156272a7002333316c119be9a/include/iio/iio.h#L360 Note that `dev` doesn't need to be checked with...