Benjamin Vedder
Benjamin Vedder
We can leave this one open for now and revisit it later.
The encoder driver needs some refactoring to make that clean, I will hopefully get started on that for the next release. I also had some applications where it would be...
It works when compiling normally, but when I use my static build on Ubuntu 16.04 and run it on different machines, the serial port does not work on some of...
1. and 2. I think it is best to get these from the lisp interface, especially the BMS-values. Otherwise I have to lock the bms_values data structure for future compatibility...
Here is how to get the min and max voltage and print them ```clj (let ( (volts-sorted (sort < ; Sort list with voltages in ascending order (map (fn (x)...
Almost, you have to make them into a list if you use apply. Easier would be to pass them as arguments directly though: ```clj (ext-set-bms-stats volts-min volts-max (get-bms-val 'bms-temp-cell-max)) ```...
It was long ago that I worked with uavcan, but I think I set the ID in every iteration so that changing the appconfig would take effect without a reboot....
The problem is that even with file permissions VESC Tool can only access very few locations since the latest google play store requirements. Getting around that is almost impossible. What...
I think qt5.15 tries much harder to respect the system scaling settings, so you can try changing them and see if it makes any difference.
Thanks for noticing, the 100 ms should have been 1000. Running nested local event loops should not be a problem. QDialog::exec() opens a local event loop, which then in turn...