Sam Grimee - LX2SG
Sam Grimee - LX2SG
thanks Joao, understood. I was thinking about the logging features only, without debugger. For this making the serial port configurable would still be useful...
I have the same problem with a Waveshare ESP-C3-32S-Kit. I have tried re-instering the USB, and also @javiser method to build the bootloader from idf hello world project (that flashes...
Ah then espflash is the problem here, which will be solved by https://github.com/esp-rs/espflash/issues/140 I will keep trying to workaround with a bootloader and partition table created some other way, or...
I have the same problem on mac M2. It does not happen consistently, but more often when the database is large. ```rust let db = connect("ws://localhost:8000").await?; db.use_ns("test").use_db("test").await?; db.signin(Root { username:...
What I observe in 6.49 but not in 6.48.6 or before, is that stdout contains a slash when it should be empty: 'stdout': ['/'], 'stdout_lines': [['/']]} This breaks my validation...
thanks @felixfontein, yes that does fix it, for lines starting not only with / but also : I have hundreds to change... so instead I patched the ```plugins/module_utils/routeros.py``` file with...
@felixfontein would you accept a MR with this workaround (adding a space in front of every command) until a cleaner solution can be found? I have been running with it...
@archhorde this is not a direct answer to your question but I work around this by setting `system routerboard settings set auto-upgrade=yes`. This way the firmware follows the upgrades of...
Thanks for the response! So I try from a fresh venv, I install setuptools and ninja, then: ``` uv pip install --no-build-isolation pyre2==0.3.6 Resolved 1 package in 0.94ms error: Failed...
thanks for checking... are you on python 3.12? I still see the error, and had a colleague test it to, but I see it only on 3.12. With 3.9-11, I...