Thomas Coenen
Thomas Coenen
Which version of the library do you use? In older versions this code was included: ```c int CANRaw::available() { int val; if (rx_avail()) { val = rx_buffer_head - rx_buffer_tail; //Now,...
I'm using Django 3.2.6 with django-admin-sortable2 1.0 from pypi.
What do you recommend as a migration strategy? Just hardcoding the wrong, old path on macOS and checking for config files there? What about something like a `compat`-flag to switch...
We had the same problem and solved it by switching back to bossac 1.10601. The newer version 1.10900.0 did not work for us. We use the native USB port. Links:...
Once again I should rebase this for fewer commits. And it seems to have some problems on windows.
This works now, but I'm kind of unhappy with it. For example I'm missing a param `overwrite` in `move.move_dir`. Is it ok for you if I add one? It would...
Hi, yes it‘s in development. I‘m on vacation in the moment, I‘ll look into this next week ☀️
> I'm not sure there's any reasonable way that that can be done consistently for different fs objects? 🤔 So it should be possible to fix it for fs.base.FS.move, but...
Ah I see, didn't think about that! So some additional checks are needed when encountering a SubFS? (compare to `subdir.delegate_fs()` and `subdir.delegate_path(path)`)
`copy` has kind of the same problem, but leaves an empty file: ```python from fs import open_fs with open_fs("mem://") as currdir: currdir.writetext("test.txt", "Content") currdir.copy("test.txt", "test.txt", overwrite=True) assert currdir.readtext("test.txt") == "Content"...