Paolo Messina

Results 43 comments of Paolo Messina

Yes, this would be nice to have. We'll keep it in mind for future developments. Or you may contribute your own implementation in the meanwhile. ;-)

OpenTracker does have CAN bus interface, which is supported by Arduino Due libraries. See: https://github.com/geolink/opentracker-arduino-board/tree/master/sam/1.0.5/libraries/due_can If you need interfaces other than CAN you can use an external adapter.

Actually the C runtime library is not "thread-safe". When you use a shared resource, like the serial interface you use for printf() output, you have to provide your own locking/mutex...

Could you please post a picture showing this issue?

Ok I can see what happens... the dialog controls keep their size in pixels when moving from the 150% monitor to the 100% monitor, while the dialog window itself is...

Obviously the library does not cope with different DPI settings. I am not sure if there could be a simple fix, like working with "logical" vs "physical" pixels and just...

It might be possible to support the new API, but I don't have Windows 10 on my main dev PC, so don't expect this change to come any time soon....

I guess inline functions should not go into the DLL, but stay in the header file, just like they do not end up in the compiled LIB file.

Of course all the functions could be moved from the header to the source file and not inlined. They are not that way simply because I did not mean to...