Gisle Vanem
Gisle Vanem
> this is slightly, but not totally, tangential. If you want (I'll explain why), you can go to I've been busy with other things lately. That's why I've not come...
A SDRPlay device has never worked for me either. There's some issue with how samples are processed compared to a RTLSDR-device. 8 vs. 14 bit per. sample perhaps?
> I might see if I can investigate. Any progress on this?
I see the same myself. It's some issue with the CPR (*Compact Position Reporting*) algorithm used for message-type 17 and sub-types **[9..18+20,21,22]**. Probably some math-rounding error in [`decode_CPR()`](https://github.com/gvanem/Dump1090/blob/main/src/misc.c#L2131) or a...
> eventually forming a grid, pictured below. I fail to parse this "*grid*". Your location is not shown on the map. But I assume it's in Oklahoma? I do not...
I forgot this issue: `error C4716: 'SPIApp::parseAttributes': must return a value`. Fixed by: ```diff --- a/gui/spiapp.cpp 2022-07-26 11:29:08 +++ b/gui/spiapp.cpp 2022-09-01 13:12:30 @@ -614,4 +614,5 @@ default: break; } +...
> I would say that this is caused by strict compiler settings when warning leads to error. That's not it. MSVC does not parse a `#warning` statement.
> you will see that is it not behaving as you would like, the update is not fast enough. I can see it jumps over a second often. But isn't...
> I hate that compiler, always something special :-/ But it's **fast**. With `cl -MP all-sources-except-the-MOC-files`, it completes in 10 seconds here.
The new `gui/soapysdrinpuyt.cpp` does not compile due to the use of VLA. Errors: ```c gui/soapysdrinput.cpp(494): error C2956: usual deallocation function 'void operator delete[](void *,std::align_val_t) noexcept' would be chosen as placement...