Angus Gratton
Angus Gratton
This is another "con" from https://www.dokuwiki.org/tips:mediawiki_to_dokuwiki_converter > Categorys are not converted (the content within the category pages) At the moment yamdwe just skips all "special" pages, including any Category pages....
I noticed someone added a "con" for yamdwe at https://www.dokuwiki.org/tips:mediawiki_to_dokuwiki_converter > Slow for much mediawiki content The main issue for speed is probably number of revisions. It would be pretty...
Mostly small cleanups, and explicit disable for examples/tests which insert the current directory into the path before importing.
When rp2 port went tickless the behaviour of machine.idle() changed as there is no longer a tick interrupt to wake it up every millisecond. On a quiet system it would...
This PR enables [UBSan](https://gcc.gnu.org/onlinedocs/gcc/Instrumentation-Options.html#index-fsanitize_003dundefined) on the coverage build by default, so it will be checked in CI. Includes two supporting commits to fix UB that appeared in test runs. Kudos...
### Port, board and/or hardware rp2 port, PICO and WeACTStudio boards ### MicroPython version MicroPython v1.24.0-preview.39.g411d66586c on 2024-06-18; WeAct Studio RP2040 with RP2040 (current master) ### Reproduction 1. Copy this...
If the CDC receive buffer was full and some code read less than 64 bytes (wMaxTransferSize), the CDC code would submit an OUT transfer with N
This is a use case we found in MicroPython, as we added support for retaining the USB peripheral clock in SLEEP mode. The [mp_machine_lightsleep function](https://github.com/micropython/micropython/blob/a84c7a0ed931667cda44a8e27888f066e085d5eb/ports/rp2/modmachine.c#L109) selectively disables a range of...
* Fix a build warning that snuck in with #67 (unused Result). * Configure CI to fail if the build step produces any warnings.
I suspect you folks have thought about this, so I'm curious what your take is on using a proc macro mechanism such as [quote](https://lib.rs/crates/quote) to generate the output code instead...