summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2025-06-25py/misc: Fix fallback implementation of mp_popcount.Damien George
2025-06-24py/obj: Fix nan handling in object REPR_C and REPR_D.Yoctopuce dev
2025-06-23py/runtime: Add support for using __all__ in star import.Yoctopuce dev
2025-06-23zephyr/boards/beagleconnect_freedom: Remove board overlay.Ayush Singh
2025-06-23zephyr/boards/beagleconnect_freedom: Enable networking.Ayush Singh
2025-06-19samd/boards: Change the SparkFun vendor name to SparkFun.robert-hh
2025-06-19py/repl: Skip private variables when printing tab completion options.Andrew Leech
2025-06-19tests/cmdline: Add a test for REPL paste mode.Andrew Leech
2025-06-19tests/run-tests.py: Add support for ctrl keys in REPL tests.Andrew Leech
2025-06-19rp2/CMakeLists.txt: Make linker script configurable.Phil Howard
2025-06-19rp2/CMakeLists.txt: Make board's pins.csv configurable.Phil Howard
2025-06-17rp2/rp2_flash: Add default MICROPY_HW_FLASH_MAX_FREQ.Phil Howard
2025-06-17rp2/rp2_flash: Add MICROPY_HW_FLASH_MAX_FREQ to replace fixed max freq.Phil Howard
2025-06-17esp32/modesp32: Fix access to ext0_pin only if defined.Meir Armon
2025-06-17py/modio: Fix the case where write fails in BufferedWriter.flush.Jeff Epler
2025-06-16tests/extmod: Add platform_basic.py for basic coverage test of platform.Jeff Epler
2025-06-16tests/cpydiff: Document complex() parsing difference.Jeff Epler
2025-06-16github/workflows: Add sanitize_undefined workflow to unix port CI.Jeff Epler
2025-06-16tools/ci.sh: Add functions for sanitizer builds.Jeff Epler
2025-06-16py: Fix undefined left shift operations.Jeff Epler
2025-06-16docs/rp2: Document the new rp2 Timer hard= option.Chris Webb
2025-06-16tests/ports/rp2: Add tests for rp2-specific timer options.Chris Webb
2025-06-16rp2/machine_timer: Support hard IRQ timer callbacks.Chris Webb
2025-06-16drivers/esp-hosted: Replace EVENT_POLL_HOOK with mp_event_wait_ms.Andrew Leech
2025-06-16renesas-ra: Replace MICROPY_EVENT_POLL_HOOK with mp_event_wait.Andrew Leech
2025-06-16tools/mpremote: Improve df command to use new no-arg vfs.mount() query.Damien George
2025-06-16esp32/modesp32: Make wake_on_ext1 available only on SoCs supporting it.Meir Armon
2025-06-16esp32/modesp32: Make wake_on_ext0 available only on SoCs supporting it.Meir Armon
2025-06-16esp32/modesp32: Make wake_on_touch available only on SoCs supporting it.Meir Armon
2025-06-16py/asmbase: Fix assertion error with viper code.Jeff Epler
2025-06-16unix/coverage: Add coverage test for left adjusted print.Jeff Epler
2025-06-16py/mpprint: Remove unused "PF_FLAG_NO_TRAILZ" flag.Jeff Epler
2025-06-16py/objlist: Reduce code size in slice operations.Jeff Epler
2025-06-16py/mpz: Avoid undefined behavior decrementing NULL.Jeff Epler
2025-06-16esp32/modesp32: Make wake_on_ulp available only on SoCs that support it.Meir Armon
2025-06-14esp32/README: Update README to describe auto filesystem sizing.Damien George
2025-06-14esp32/boards: Convert all boards to auto detect flash size.Damien George
2025-06-14esp32/main: Auto detect the size of flash and auto create vfs partition.Damien George
2025-06-13esp8266/modmachine: Use common machine_time_pulse_us implementation.Damien George
2025-06-13extmod/machine_pulse: Optimise time_pulse_us for code size.Damien George
2025-06-12tests/run-natmodtests.py: Consider a test skipped if mpy doesn't exist.Damien George
2025-06-12tests/run-perfbench.py: Create a _result.json at end of run.Damien George
2025-06-12tests/run-natmodtests.py: Create a _result.json at end of run.Damien George
2025-06-12tests/run-multitests.py: Create a _result.json at end of run.Damien George
2025-06-12tests/run-tests.py: Factor out helper function to create test report.Damien George
2025-06-12tests/extmod/random_extra_float.py: Skip when funcs not available.Damien George
2025-06-11github/workflows: Use windows-latest runner for all Windows CI jobs.Damien George
2025-06-11py/objfloat: Change MSVC workaround for NAN being a constant.Damien George
2025-06-10py/parsenum: Fix parsing complex literals with negative real part.Jeff Epler
2025-06-10py/objarray: Allow extending array with any iterable.Jeff Epler