Releases: adafruit/circuitpython
CircuitPython 10.1.0-beta.0
This is CircuitPython 10.1.0-beta.0, a beta release for 10.1.0. It has known bugs that will be fixed before the final release of 10.1.0.
Highlights of this release
- Update
espressifESP-IDF to v5.5.1 and support ESP32-C61.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-C2, ESP32-C3, ESP32-C6, ESP32-C61, ESP32-H2, ESP32-S2, ESP32-S3nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: , ESP32-P4litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
Documentation changes
Build and infrastructure changes
Translation additions and improvements
New boards
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.3
This is CircuitPython 10.0.3, the latest bugfix revision of CircuitPython, and is a new stable release.
Highlights of this release
- Fix SPI DMA on
atmel-samdboards, which fixes SD card mounting problems. - Restore SD card USB presentation on
atmel-samdboards. - No changes in this release for non-
atmel-samdboards.
CircuitPython 10.0.2 was skipped due to a build problem.
Incompatibility warnings when upgrading to 10.0.x from 9.x.x
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asynciohas removedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
Nordic
renode
RP2
SAMx
- Restore presenting mounted SD cards as USB drives. #10677. Thanks @dhalbert.
- Fix SPI DMA implementation, which fixes SD card mounting problems. #10668. Thanks @dhalbert.
SiLabs
Spresense
STM
Zephyr
Individual boards
Documentation changes
Build and infrastructure changes
Translation additions and improvements
New boards
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.1
This is CircuitPython 10.0.1, the latest bugfix revision of CircuitPython, and is a new stable release.
Highlights of this release
- Fix 10.0.0 regression preventing writing to a filesystem other than CIRCUITPY via USB.
Incompatibility warnings when upgrading to 10.0.x from 9.x.x
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asynciohas removedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
- Fix filesystem writability from USB. #10659. Thanks @dhalbert.
- Fix crashes when subclassing
deque. #10653. Thanks @dhalbert.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
Documentation changes
Build and infrastructure changes
- Fix
mpy-crossbuild failure when usingclang(e.g., macOS). #10656. Thanks @dhalbert. circuitpython_setboard: importimportlibTraversablefrom new location. #10661. Thanks @dhalbert.
Translation additions and improvements
New boards
- M5Stack DinMeter. #10650. Thanks @juergenpabel.
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.0
This is CircuitPython 10.0.0, the latest major revision of CircuitPython, and is a new stable release.
This release is identical to 10.0.0-rc.0 except for its version number.
Incompatibility warnings when upgrading to 10.0.0 from 9.x.x
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asynciohas removedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Notable changes to 10.0.0 not in 9.x.x
Audio
- Add effects:
audiodelays.Chorus,audiodelays.MultiTapDelay,audiofreeverb.Freeverb,audioFilters.Phaser. - Add
audiomixer.MixerVoice.panning, withsynthio.BlockInputsupport. - Add
synthio.MidiTrack.tempo. - Rename
synthio.BlockBiquadtosynthio.Biquad. See Incompatibility warnings above. - Convert mono audio to stereo when going through a stereo
audiomixer.Mixer. - Add
MixerVoice.end().
Built-in modules
- Initial experimental implementation of MicroROS.
- Improve accuracy of
time.sleep()and similar functions.
Graphics
- Support quad-color and "Spectra6" six-color e-ink displays.
tilepalettemapper.TilePaletteMappernow supportsdisplayio.ColorConverter.- Add
lvfontio.OnDiskFontto support on-disk fonts forterminalio. - Add
Terminal.cursor_xand.cursor_y. - Add
picodvi.Framebuffer.color_depth. - Improve
picodvitiming to accomodate more monitors.
Internal
- Improved garbage collection times: skip scanning inside objects with no pointers.
- Update TinyUSB.
- Merge MicroPython updates up to MicroPython v1.25.0.
- Update Espressif ESP-IDF to 5.4.1.
- Update Raspberry Pi
pico-sdkto 2.2.0 andcyw43-driverto v1.1.0.
Networking
- Use full Mozilla SSL root certificate list for all network-capable boards.
- Add
wifi.radio.power_managementto control WiFi power consumption while listening.
Python interpreter
Storage
- Add
CPSAVESpartition (currently only on Adafruit Fruit Jam).
Supervisor
USB
- Present mounted SD cards and
CPSAVESas additional USB drives.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
Documentation changes
Build and infrastructure changes
Translation additions and improvements
New boards
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.0-rc.0
This is CircuitPython 10.0.0-rc.0, a release candidate for 10.0.0 final. This release is believed to be stable, and is meant for testing before the final release of 10.0.0.
Highlights of this release
- Allow chained calls for audio effects and audio mixer.
- Bug fixes.
Incompatibility warnings
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asyncioremovedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
- Update frozen libraries. #10649. Thanks @dhalbert.
- Ensure that additional mounted filesystems are read-only to the host if read-write to CircuitPython, and vice versa. #10648. Thanks @dhalbert.
- Prevent spurious auto-reloads when host writes the filesystem dirty bit. #10645. Thanks @dhalbert.
- Allow chained calls for audio effects and audio mixer. #10635. Thanks @relic-se.
- Ensure USB host buffers are in DMA-capable RAM. #10633. Thanks @tannewt.
- Always include module name for clarity when reporting an
importfailure. #10629. Thanks @dhalbert. - Give better error when mistakenly importing a MicroPython
.mpyfile. #10622. Thanks @dhalbert. - Improve
usb.core.Deviceerror handling. #10616. Thanks @samblenny.
Port and board-specific changes
Analog Devices
- Add
busiosupport. #10413. Thanks @Brandon-Hurst.
Broadcom
Espressif
- Return correct error code on network connect failure. #10631. Thanks @dhalbert.
- Use standard LWIP defaults in
sdkconfig.defaultsto allow more sockets. #10609. Thanks @dhalbert.
i.MX
Nordic
renode
RP2
- Fix crash after
rotaryio.IncrementalEncoderconstructor failure. #10634. Thanks @dhalbert. - Fix LWIP-related crashes by putting port heap operations in critical sections. #10631, #10615. Thanks @dhalbert.
- Incorporate recent MicroPython LWIP-related fixes. #10631. Thanks @dhalbert.
- Fix PIO wait pin validation. #10627. Thanks @Supermath101 and @dhalbert.
SAMx
- Disable SD card mount presented as USB drive, due to a SAMD-specific issue. #10645. Thanks @dhalbert.
- Release SERCOM on I2C deinit. #10402. Thanks @eightycc.
SiLabs
Spresense
STM
Zephyr
Individual boards
- Bradán Lane STUDIO Core M0: add more built-in modules. #10601. Thanks @bradanlane.
- M5Stack Cardputer: fix boot loop. #10607. Thanks @dhalbert.
- M5Stack CoreS3: improve pin definitions. #10558. Thanks @CDarius.
Documentation changes
- Improve
struct_timeandtime.localtime()documentation and type annotations. #10603. Thanks @proveskit. - Improve
wifi.Radiotype annotations. #10602. Thanks @proveskit.
Build and infrastructure changes
- Move
adabotcron workflows tocircuitpythonrepo. #10596. Thanks @FoamyGuy. - Use
RUN_BACKGROUND_TASKSasMICROPY_INTERNAL_EVENT_HOOK, so it doesn't have to be called explicitly frommp_event_wait_*(). #10379. Thanks @jepler.
Translation additions and improvements
New boards
- Espressif ESP32-C3 Lyra V2. #10625. Thanks @oroblancoinc.
- Prokyber Ai-On-The-Edge-Cam. #10605. Thanks @allexoK.
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 9.2.9
This is CircuitPython 9.2.9, the latest bugfix revision of CircuitPython, and is a new stable release.
WARNING for nRF52 boards only: If your board has an nRF52 UF2 bootloader whose version is before 0.6.1, you will not be able to load CircuitPython 8.2.0 and later, due to increased size of the firmware. See these instructions for updating your bootloader.
Highlights of this release
- Fix network crashes on Pico W; fixes regression since 9.2.5.
Incompatibility warnings
- Uses of deprecated
displayiobindings are now called out with warnings. For instance,displayio.Displayis deprecated in favor ofbusdisplay.BusDisplay. In CircuitPython 10.0.0 the deprecated bindings will be removed.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with nRF5340, nRF54L15, RA6M5, STM32H7
Changes
Fixes and enhancements
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
Documentation changes
Build and infrastructure changes
Translation additions and improvements
New boards
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.0-beta.3
This is CircuitPython 10.0.0-beta.3, a beta release for 10.0.0. It has known bugs that will be fixed before the final release of 10.0.0.
Highlights of this release
- Convert mono audio to stereo when going through a stereo
audiomixer.Mixer. - Add
audiomixer.MixerVoice.panning, withsynthio.BlockInputsupport. - Add
synthio.MidiTrack.tempo. - Restore missing
audioiomodule on ESP32 and ESP32-S2. - RP2xxx DVI now works on more monitors and has fewer glitches.
Incompatibility warnings
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asyncioremovedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
- Fix
lvfontiomemory allocation. #10599. Thanks @tannewt. - Update frozen libraries. #10597, #10575. Thanks @FoamyGuy and @dhalbert.
- Claim USB host pins on board startup to prevent accidental reuse. #10585. Thanks @dhalbert.
- Add
synthio.MidiTrack.tempo. #10579, #10567. Thanks @relic-se. - Allow
usb_hid.Device Usagevalue to be 0, instead of starting at 1; some devices use 0. #10577. Thanks @dhalbert. - Update
tinyusb. #10559. Thanks @samblenny. - Convert mono audio to stereo when going through a stereo
audiomixer.Mixer; addaudiomixer.MixerVoice.panning, withsynthio.BlockInputsupport. #10529. Thanks @relic-se
Port and board-specific changes
Analog Devices
- Add RTC implementation, including
rtcmodule. #10592. Thanks @PaggieZ. - Add
os.urandom. #10549. Thanks @PaggieZ.
Broadcom
Espressif
i.MX
Nordic
renode
RP2
- Fix DVI blanking during NeoPixel updates. #10600. Thanks @tannewt.
- Fix DVI blanking during SPI transactions. #10598. Thanks @tannewt.
- Fix processor name for two Pimoroni boards to
rp2350a. #10593. Thanks @bablokb. - Update to
pico-sdk2.2.0 andcyw43-driverv1.1.0. #10587. Thanks @dhalbert. - Improve
picodvirefresh rate timing to accomodate more monitors. #10534. Thanks @samblenny and @WolfWings.
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
Documentation changes
Build and infrastructure changes
Translation additions and improvements
- Thanks for translations:
- @CrackXT (French, Polish, Spanish)
New boards
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- M5Stack Cardputer builds are not working. Use 9.2.8 for now.
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.0-beta.2
This is CircuitPython 10.0.0-beta.2, a beta release for 10.0.0. It has known bugs that will be fixed before the final release of 10.0.0.
This release is the same as CircuitPython 10.0.0-beta.1 and replaces it. Some boards failed to build during the beta.1 release process due to a third-party website problem. This release fixes that problem but is otherwise the same.
Highlights of this release
- Support quad-color e-paper displays.
- Support MagTag 2025 Edition display.
- Use full Mozilla SSL root certificate list for all network-capable boards.
Incompatibility warnings
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asyncioremovedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
- Fix heap growth calculation, which was preventing early large allocations. #10525. Thanks @tannewt.
- Support quad-color e-paper displays. #10519. Thanks @tannewt.
- Use full Mozilla SSL root certificate list for all network-capable boards, instead of previous smaller list. #10508, #10354. Thanks @dhalbert.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Return correct deep-sleep wakeup pin on ESP32. #10513. Thanks @dhalbert.
- Restore settable
microcontroller.cpu.frequencyon all but 2MB-flash boards. #10495. Thanks @dhalbert. - Fix storage allocation in
frequencyio.FrequencyIn. #10490. Thanks @dhalbert and @Sola85.
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
- Adafruit Fruit Jam: add
board.IRpin. #10486. Thanks @BlitzCityDIY. - Adafruit MagTag: support new displays on MagTag 2025 edition. #10505. Thanks @tannewt.
Documentation changes
- Improve description of when
settings.tomlis read. #10493. Thanks @tannewt. - Improve
Terminalescape code documentation. #10492. Thanks @tannewt. - Add a static stubs directory and include
micropython.constin the stubs. #10485. Thanks @dunkmann00.
Build and infrastructure changes
Translation additions and improvements
New boards
- senseBox-eye ESP32S3. #10523. Thanks @sensebox.
- Waveshare ESP32-S3-LCD-1.47. #10509. Thanks @liduanjun.
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.0-beta.1
This is CircuitPython 10.0.0-beta.1, a beta release for 10.0.0. It has known bugs that wil be fixed before the final release of 10.0.0.
Highlights of this release
- Support quad-color e-paper displays.
- Support MagTag 2025 Edition display.
- Use full Mozilla SSL root certificate list for all network-capable boards.
Incompatibility warnings
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asyncioremovedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
- Fix heap growth calculation, which was preventing early large allocations. #10525. Thanks @tannewt.
- Support quad-color e-paper displays. #10519. Thanks @tannewt.
- Use full Mozilla SSL root certificate list for all network-capable boards, instead of previous smaller list. #10508, #10354. Thanks @dhalbert.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Return correct deep-sleep wakeup pin on ESP32. #10513. Thanks @dhalbert.
- Restore settable
microcontroller.cpu.frequencyon all but 2MB-flash boards. #10495. Thanks @dhalbert. - Fix storage allocation in
frequencyio.FrequencyIn. #10490. Thanks @dhalbert and @Sola85.
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
- Adafruit Fruit Jam: add
board.IRpin. #10486. Thanks @BlitzCityDIY. - Adafruit MagTag: support new displays on MagTag 2025 edition. #10505. Thanks @tannewt.
Documentation changes
- Improve description of when
settings.tomlis read. #10493. Thanks @tannewt. - Improve
Terminalescape code documentation. #10492. Thanks @tannewt. - Add a static stubs directory and include
micropython.constin the stubs. #10485. Thanks @dunkmann00.
Build and infrastructure changes
Translation additions and improvements
New boards
- senseBox-eye ESP32S3. #10523. Thanks @sensebox.
- Waveshare ESP32-S3-LCD-1.47. #10509. Thanks @liduanjun.
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.
CircuitPython 10.0.0-beta.0
This is CircuitPython 10.0.0-beta.0, a beta release for 10.0.0. It has known bugs that wil be fixed before the final release of 10.0.0.
Highlights of this release
- Increase the firmware partition size for ESP32-S2 boards with 4MB flash, allowing more features to be included. This change was made for 4MB flash ESP32-S3 boards in previous releases. Starting with this release, you must now update the TinyUF2 bootloader on all 4MB flash ESP32-S2 and ESP32-S3 boards. See below.
- Fix Espressif
pulseio.PulseInregression.
Incompatibility warnings
- You must update the TinyUF2 bootloader on all ESP32-S2 and ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
- The CircuitPython UF2 builds for these boards now assume a firmware partition size of 2.8MB (double the old size), as explained here. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail: you will remain in the bootloader, with the BOOT drive showing.
- This bootloader update is only needed for ESP32-S2 and ESP32-S3 boards with 4MB flash boards; other ESP32-S2 and ESP32-S3 boards are fine. This bootloader update is compatible with CircuitPython 9.1.0 and later.
- The proper updated bootloader will be installed by the "OPEN INSTALLER" buttons on each board download page and is also listed in the bootloader update section on those pages.
- If you are loading CircuitPython using a
.binfile instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
synthio.BlockBiquadhas been renamed tosynthio.Biquad. The old deprecatedsynthio.Biquadhas been removed, as well assynthio.Synthesizer.low_pass_filter,synthio.Synthesizer.high_pass_filter, andsynthio.Synthesizer.band_pass_filter. Coefficients frombiquad_filter_statehave been moved intosynthio_biquad(biquad_filter_stateis still used for input and output state).- The
displayiobindings deprecated in 9.x.x have been removed:busdisplay.BusDisplayreplacesdisplayio.Display.fourwire.FourWirereplacesdisplayio.Fourwire.epaperdisplay.EPaperDisplayreplacesdisplayio.EPaperDisplay.i2cdisplaybus.I2CDisplayBusreplacesdisplayio.I2CDisplay.
os.uname().sysnameandos.uname().nodenamenow are set toMICROPY_HW_MCU_NAMEuniformly across all ports.watchdog.WatchDogTimer.deinit()is removed._asyncioremovedpush_head,push_sorted,pop_head. Ensure you are using the latest version of theasyncioCircuitPython library.sys.print_exception()is removed. Usetraceback.print_exception()instead. The exception object returned bysys.exc_info()is now atracebackmodule compatible object.
Download from circuitpython.org
Firmware downloads are available from the downloads page on circuitpython.org. The site makes it easy to select the correct file and language for your board.
Installation
To install follow the instructions in the Welcome to CircuitPython! guide. To install the latest libraries, see this page in that guide.
Try code.circuitpython.org or the latest version of the Mu editor for creating and editing your CircuitPython programs and for easy access to the CircuitPython serial connection (the REPL).
Documentation
Documentation is available in readthedocs.io.
Port status
CircuitPython has a number of "ports" that are the core implementations for different microcontroller families. Stability varies on a per-port basis. As of this release, these ports are consider stable (but see Known Issues below):
atmel-samd: Microchip SAMD21, SAMx5xcxd56: Sony Spresenseespressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6nordic: Nordic nRF52840, nRF52833raspberrypi: Raspberry Pi RP2040, RP2350stm: ST STM32F4 chip family
These ports are considered alpha and will have bugs and missing functionality:
analog: Analog Devices MAX32690broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2Wespressif: ESP32-P4, ESP32-H2litex: fomumimxrt10xx: NXP i.MX RT10xxxrenode: hardware simulatorsilabs: Silicon Labs MG24 familystm: ST non-STM32F4 chip familieszephyr: multiplatform RTOS: testing with Nordic nRF5340 and nRF54L15, Renesas RA6M5, ST STM32H7
Changes
Fixes and enhancements
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Revert most of #10397,
pulseio.PulseInDMA support on ESP32-S3, due to regressions. #10470. Thanks @bill88t. - Expand firmware partition on ESP32-S2 boards, merging with OTA update partition. #10468. Thanks @dhalbert.
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
Documentation changes
Build and infrastructure changes
- Fix capitalization of ARM GNU toolchain download tar file for
.devcontainer. #10477. Thanks @bablokb.
Translation additions and improvements
New boards
- Elecrow CrowPanel. #9883. Thanks @ddrown.
- Noise Nugget 2040. #10369. Thanks @wee-noise-makers.
- Omnimo-nRF52840. #10056. Thanks @OmarEMbed.
- Unexpected Maker EdgeS3D. #10476. Thanks @UnexpectedMaker.
Known issues
- See https://github.com/adafruit/circuitpython/issues for other issues, including issues still to be addressed for:
- Native-code .mpy files are not working. This capability is currently enabled only on the
winterbloom_solboard.
Thanks
Thank you to all who used, tested, and contributed toward this release, including the contributors above, and many others on GitHub and Discord. Join us on the Discord chat to collaborate.