Alex Shovkoplyas

Results 7 comments of Alex Shovkoplyas

I like the second option more as it does not require changes in the calling code to handle nulls. The [previous fix](https://github.com/pothosware/SoapySDR/pull/444/files) returns an array of nulls if option names...

The sdr driver is supposed to pass either two vectors of the same length, or an empty and non-empty vectors. If it returns ` 0 < M < N`, it...

There are two projects in the repo, [Pothosware.SoapySDR](https://github.com/VE3NEA/SoapySdrSharp/tree/master/Pothosware.SoapySDR) and [ListSoapySdrDevices](https://github.com/VE3NEA/SoapySdrSharp/tree/master/ListSoapySdrDevices). For the first project I just cloned SoapySDR and ran **cmake**, then I created a new .net 8.0 Class Library...

On Windows we do not need to rebuild the libraries every time we want to use them. Once built, they work for everyone, on every 64-bit version of Windows. Since...

Yes. To use SoapySDR in a C# app, one needs to include the bindings assembly (`Pothosware.SoapySDR.dll`) as a dependency in the project, and copy all non-C# dll's from the example...

To rebuild SoapSDR on Windows, run these commands in Git Bash: ``` git clone https://github.com/pothosware/SoapySDR.git cd soapysdr mkdir build cd build cmake .. ``` This will create the `SoapySDR.sln` file....

The solution had multiple projects, I just built the ones that I needed. Cannot help you with CLI and Python, sorry.