Benjamin Vedder
Benjamin Vedder
I think some information in the readme file would be nice. It is fairly simple to compile though, a default installation of Qt is enough. There is a list of...
This sounds like something that can be done with lispbm and/or with QML scripting. Very interesting charger! I just ordered one.
You can download it from here https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads and unpack it in /usr/local. Make sure to use the gcc-arm-none-eabi-7-2018-q2 as there seems to be a problem with gcc-versions later than 7...
I currently have no way to test this as I didn't add miso to any of my as5047 test boards. It would be good if someone who has been using...
I have been working on this one, which is based on flat values: https://github.com/vedderb/vesc_pkg/tree/main/lib_code_server It will block and give the result back (or a timeout that can be specified), so...
It should work well with quasi-quotation. Example: ```clj (defun set-param (param value) (rcode-run 40 0.5 `(conf-set ,param ,value)) ) ``` Now you can use it like this ```clj (set-param 'max-speed...
My mistake. Can you try this version of set-param? ```clj (defun set-param (param value) (rcode-run 40 0.5 `(conf-set (quote ,param) ,value)) ) ``` To check for timeout you can just...
The confgenerator-file should not be edited manually as it is autogenerated from vesc tool when editing the configuration xml files. What this looks like to me is a limit on...
Another note on this one. Turns out there was a bug in unflatten which would cause random strange behavior and crashes. Should be fixed in the latest beta.
Can you give me a short example that reproduces that problem that I can try without the hardware you are using?