Matthias Urlichs

Results 342 comments of Matthias Urlichs

Rebased onto develop branch.

Yep, I need this for CBOR compatibility. The CPython CBOR2 package does a little "if it fits in 16 bits without losing accuracy then use two bytes, not four" dance...

> There is no support on xtensa (even in libgcc). Well, given that xtensa is one of the platforms I need to run my code on …

Done; assuming that the existence of the `FLT16_MAX` macro mirrors the existence of `_Float16`, which may or may not be correct …

Thank you for your work on this!

I recommend to add a "read address and size of the contiguous bits starting at offset X of filehandle Y" function to littlefs, and then send them a pull request...

I pushed a delete-all change to the new "removed" branch and set that as the default.

Basically I'm running the asyncio testsuite. It installs a CoroWrapper (via `sys.set_coroutine_wrapper()`) to warn about not awaiting async procedures after calling them: ``` async def foo(): pass foo() ``` Thus,...

Great something's happening, finally. I have two QL-series printers (500 and 550 I think – they're in the basement and I'm lazy) I can help test with.

That is still possible, you just need to go about it differently. From my own code: ``` class AppCommand(Command): """Runs app-specific commands""" capture_all_args = True add_help = False def __init__(self):...