Rich Felker

Results 262 comments of Rich Felker

> Regarding `wcrtomb` (i think that's what you actually meant?) i am little worried though if it's really sufficient when dealing with non UTF-8 capable terminals. `wcrtomb` will convert to...

That's a lot of information, but the things that stand out at me right away that you should check: 1. Running glibc's `ldd` on a musl-linked program is meaningless. You...

In your logs it looks like your target is `x86_64`, not `i386`, so now I'm even more confused about your weird value of `--host`...

Get rid of all that `$(CROSS_TOOLS)`, etc. stuff and just pass the right `--host`. Then `configure` will automatically choose the right tools. For some non-autoconf-based software (typically stuff like Busybox...

Read the comments at the top of `config.sub`. They include the URL for an updated copy of `config.sub` that will recognize musl. But if you're running `autoconf` yourself to generate...

I was able to hack this in by adding `offsets = self._printer._comm.getOffsets()` and applying them to the value returned in `get_temps_from_file`. I'm not sure if this would be acceptable for...

Thanks. As for the motivation, I really need the starting temps the file to be printed will initially wait for (with offsets applied) because my "start print" gcode script in...

Ping. Proposed possible patch for this: ``` --- __init__.py.orig 2022-04-04 07:40:17.406609696 +0100 +++ __init__.py 2022-04-05 17:24:59.116629495 +0100 @@ -89,6 +89,8 @@ if gcode in ('M104', 'M109', 'M140', 'M190'): self._logger.debug("Line %d:...

Merging. Thanks and sorry for long delay!

> However, this does not solve the requested fast acceleration and jerks for external moves. I think should only be done for the acceleration not the deceleration due to the...