Releases: adafruit/circuitpython
CircuitPython 10.0.0-alpha.6
This is CircuitPython 10.0.0-alpha.6, an alpha release for 10.0.0. Further features, changes, and bug fixes will be added before the final release of 10.0.0.
Highlights of this release
- Fix regression causing errors on ARM processors.
Incompatibility warnings
- Starting with 10.0.0-alpha.5, the Adafruit Feather S3 4MB Flash 2MB PSRAM board requires TinyUF2 bootloader 0.31.0 or later (update instructions). This version of the bootloader removes the OTA update partition (not used) and doubles the size of the firmware code partition. This change for this particular board is a trial. If all goes well, all 4MB Flash ESP32-S2 and ESP-S3 boards will have this change applied in a later 10.0.0 alpha or beta release.
synthio.BlockBiquad
has been renamed tosynthio.Biquad
. The old deprecatedsynthio.Biquad
has been removed, as well assynthio.Synthesizer.low_pass_filter
,synthio.Synthesizer.high_pass_filter
, andsynthio.Synthesizer.band_pass_filter
. Coefficients frombiquad_filter_state
have been moved intosynthio_biquad
(biquad_filter_state
is still used for input and output state).- The
displayio
bindings deprecated in 9.x.x have been removed:busdisplay.BusDisplay
replacesdisplayio.Display
.fourwire.FourWire
replacesdisplayio.Fourwire
.epaperdisplay.EPaperDisplay
replacesdisplayio.EPaperDisplay
.i2cdisplaybus.I2CDisplayBus
replacesdisplayio.I2CDisplay
.
os.uname().sysname
andos.uname().nodename
now are set toMICROPY_HW_MCU_NAME
uniformly across all ports.watchdog.WatchDogTimer.deinit()
is removed._asyncio
removedpush_head
,push_sorted
,pop_head
. Ensure you are using the latest version of theasyncio
Python-level library.sys.print_exception()
is removed. Usetraceback.print_exception()
instead. The exception object returned bysys.exc_info()
is now atraceback
module 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 incorrect number of registers saved as gc roots on ARM processors. #10357. Thanks @eightycc.
- Fix dirty palette never being cleaned by vector shapes. #10356. Thanks @Neradoc.
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_sol
board.
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-alpha.5
This is CircuitPython 10.0.0-alpha.5, an alpha release for 10.0.0. Further features, changes, and bug fixes will be added before the final release of 10.0.0.
Highlights of this release
- Add stability fixes for Espressif port builds.
- Add fixes for direct connecting USB devices to PIO USB host.
- Improve accuracy of
time.sleep()
and similar functions. - Add
MixerVoice.end()
. - Change partition layout for Adafruit Feather ESP32-S3 4MB Flash 2MB PSRAM board, allowing BLE and other features to be enabled.
Incompatibility warnings
- Starting with 10.0.0-alpha.5, the Adafruit Feather S3 4MB Flash 2MB PSRAM board requires TinyUF2 bootloader 0.31.0 or later (update instructions). This version of the bootloader removes the OTA update partition (not used) and doubles the size of the firmware code partition. This change for this particular board is a trial. If all goes well, all 4MB Flash ESP32-S2 and ESP-S3 boards will have this change applied in a later 10.0.0 alpha or beta release.
synthio.BlockBiquad
has been renamed tosynthio.Biquad
. The old deprecatedsynthio.Biquad
has been removed, as well assynthio.Synthesizer.low_pass_filter
,synthio.Synthesizer.high_pass_filter
, andsynthio.Synthesizer.band_pass_filter
. Coefficients frombiquad_filter_state
have been moved intosynthio_biquad
(biquad_filter_state
is still used for input and output state).- The
displayio
bindings deprecated in 9.x.x have been removed:busdisplay.BusDisplay
replacesdisplayio.Display
.fourwire.FourWire
replacesdisplayio.Fourwire
.epaperdisplay.EPaperDisplay
replacesdisplayio.EPaperDisplay
.i2cdisplaybus.I2CDisplayBus
replacesdisplayio.I2CDisplay
.
os.uname().sysname
andos.uname().nodename
now are set toMICROPY_HW_MCU_NAME
uniformly across all ports.watchdog.WatchDogTimer.deinit()
is removed._asyncio
removedpush_head
,push_sorted
,pop_head
. Ensure you are using the latest version of theasyncio
Python-level library.sys.print_exception()
is removed. Usetraceback.print_exception()
instead. The exception object returned bysys.exc_info()
is now atraceback
module 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 SD cards showing up as second drive by #10351. Thanks @relic-se.
- Further integrate
TilePaletteMapper
andTileGrid
. #10318. Thanks @FoamyGuy. - Add
end()
method toMixerVoice
to allow samples to finish playing. #10309. Thanks @rhammell. - Improve resolution of
mp_hal_delay_ms()
to subticks. #10315. Thanks @eightycc. - Show four spaces in place of tab in Terminal. #10324. Thanks @FoamyGuy.
- Factor out register saves to improve gc. #10325, #10337, Thanks @tannewt and @eightycc.
- Fix
vectorio
in group tracking. #10334. Thanks @tannewt. - Remove non-standard
sys.print_exception()
. #10332. Thanks @tannewt. - Fix terminal on rotation. #10333. Thanks @tannewt.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Fix BLE not working by adding missing linker fragment on RISCV processors. #10321. Thanks @eightycc.
- Fix intermittent ESP32 crashes by wrapping
longjmp
. #10328. Thanks @eightycc.
i.MX
Nordic
renode
RP2
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
- Adafruit Feather S3 4MB Flash 2MB PSRAM: use larger single code partition. Must be used with TinyUF2 0.30.0 or laster. #10346. Thanks @dhalbert.
Documentation changes
Build and infrastructure changes
- Update use of
datetime
. #10350. Thanks @emmanuel-ferdman. - Update use of
logging
. #10343. Thanks @emmanuel-ferdman. - Fix circuitpython.org release PR creation. #10312. Thanks @tannewt.
- Fix latex docs build. #10322. Thanks @FoamyGuy.
Translation additions and improvements
- Fix duplicated error messages #10336. Thanks @jonnybergdahl.
- Thanks for translations:
- @bergdahl (Swedish)
New boards
- Adafruit Sparkle Motion Stick #10352. Thanks @BlitzCityDIY.
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_sol
board.
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.
New Contributors
- @rhammell made their first contribution in #10309.
- @jonnybergdahl made their first contribution in #10336.
- @emmanuel-ferdman made their first contribution in #10343.
CircuitPython 10.0.0-alpha.4
This is CircuitPython 10.0.0-alpha.4, an alpha release for 10.0.0. Further features, changes, and bug fixes will be added before the final release of 10.0.0.
This release is nearly the same as 10.0.0-alpha.3 but has a bug fix that breaks finalisers and results in "in use" errors. (Finalisers will usually release the resources.) It also fixes crashes on ESP32-CX RISC-V boards.
Highlights of this release
- A number of new audio effects.
- Improved garbage collection times
- ESP-IDF update to 5.4.1
- Improved audio playback on RP2
Incompatibility warnings
synthio.BlockBiquad
has been renamed tosynthio.Biquad
. The old deprecatedsynthio.Biquad
has been removed, as well assynthio.Synthesizer.low_pass_filter
,synthio.Synthesizer.high_pass_filter
, andsynthio.Synthesizer.band_pass_filter
. Coefficients frombiquad_filter_state
have been moved intosynthio_biquad
(biquad_filter_state
is still used for input and output state).- The
displayio
bindings deprecated in 9.x.x have been removed:busdisplay.BusDisplay
replacesdisplayio.Display
.fourwire.FourWire
replacesdisplayio.Fourwire
.epaperdisplay.EPaperDisplay
replacesdisplayio.EPaperDisplay
.i2cdisplaybus.I2CDisplayBus
replacesdisplayio.I2CDisplay
.
os.uname().sysname
andos.uname().nodename
now are set toMICROPY_HW_MCU_NAME
uniformly across all ports.watchdog.WatchDogTimer.deinit()
is removed._asyncio
removedpush_head
,push_sorted
,pop_head
. Ensure you are using the latest version of theasyncio
Python-level library.
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 nRF5340, nRF54L15, RA6M5, STM32H7
Changes
Fixes and enhancements
- Chorus audio effect by @gamblor21 in #10044
- Audio Effect Reverb by @gamblor21 in #10196
- Audio Effect Multi-Tap Delay by @relic-se in #10258
- Audio Effect Phaser by @relic-se in #10304
- Add selective collect to memory allocations by @tannewt in #10264
- Increase CFG_TUH_ENUMERATION_BUFSIZE so that USB devices with long descriptors are recognized by @rianadon in #10281
- Wifi power management by @dhalbert in #10271
- increase default PYSTACK size from 1536 to 2048 by @dhalbert in #10236
- Change mix calculation on
audiodelays.Echo
to allow full range. by @relic-se in #9994 - Add working_directory for subsequent code file by @tannewt in #10263
- Run background tasks during display refresh by @tannewt in #10277
- Fix for fixed point overflow in synthio by @gamblor21 in #10288
- Implement use_global_block_protection_lock for write-enabling flash. by @eightycc in #10249
- fix swapped argument required vars in bitmaptools args helper by @FoamyGuy in #10253
- update frozen libraries, especially asyncio by @dhalbert in #10251
- extmod/modasyncio.c: remove push_head, push_sorted, pop_head by @dhalbert in #10244
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Upgrade ESP-IDF v5.3.2 to v5.4.1 by @eightycc in #10267
- ESP: add MAC address to boot_out.txt (for wifi boards) by @Neradoc in #10239
i.MX
Nordic
renode
RP2
- Add touchio pullup rp2350 by @todbot in #10227
- Implement BOOTSEL button entry to safe mode for RP2. by @eightycc in #10231
- rp2pio mov_status_type and mov_status_n by @burtyb in #10262
- Fix RP2xxx I2SOut reversed channels by @dhalbert in #10250
- Tweak audio playback on RP2 by @tannewt in #10299
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
- Add Blues Cygnet Feather (STM32L433) board by @Bucknalla in #10211
- Added peripheral support for Daisy Seed stm32H750 board by @snkYmkrct in #10198
- boards/oxocard_*/board.c: Fix vertical offset for LCD screen by @supcik in #10302
- Seeed Xiao ESP32-C6: Add user LED to pins.c by @KanyonKris in #10273
Documentation changes
Build and infrastructure changes
Translation additions and improvements
New boards
- Feather RP2350 adalogger by @BlitzCityDIY in #10254
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_sol
board.
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.
New Contributors
- @Bucknalla made their first contribution in #10211
- @KanyonKris made their first contribution in #10273
- @rianadon made their first contribution in #10281
Full Changelog: 10.0.0-alpha.3...10.0.0-alpha.4
CircuitPython 10.0.0-alpha.3
This is CircuitPython 10.0.0-alpha.3, an alpha release for 10.0.0. Further features, changes, and bug fixes will be added before the final release of 10.0.0.
Known issue: This release has a bug that breaks finalisers and results in "in use" errors. (Finalisers will usually release the resources.)
Highlights of this release
- A number of new audio effects.
- Improved garbage collection times
- ESP-IDF update to 5.4.1
- Improved audio playback on RP2
Incompatibility warnings
synthio.BlockBiquad
has been renamed tosynthio.Biquad
. The old deprecatedsynthio.Biquad
has been removed, as well assynthio.Synthesizer.low_pass_filter
,synthio.Synthesizer.high_pass_filter
, andsynthio.Synthesizer.band_pass_filter
. Coefficients frombiquad_filter_state
have been moved intosynthio_biquad
(biquad_filter_state
is still used for input and output state).- The
displayio
bindings deprecated in 9.x.x have been removed:busdisplay.BusDisplay
replacesdisplayio.Display
.fourwire.FourWire
replacesdisplayio.Fourwire
.epaperdisplay.EPaperDisplay
replacesdisplayio.EPaperDisplay
.i2cdisplaybus.I2CDisplayBus
replacesdisplayio.I2CDisplay
.
os.uname().sysname
andos.uname().nodename
now are set toMICROPY_HW_MCU_NAME
uniformly across all ports.watchdog.WatchDogTimer.deinit()
is removed._asyncio
removedpush_head
,push_sorted
,pop_head
. Ensure you are using the latest version of theasyncio
Python-level library.
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
: Microchi 10000 p 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 nRF5340, nRF54L15, RA6M5, STM32H7
Changes
Fixes and enhancements
- Chorus audio effect by @gamblor21 in #10044
- Audio Effect Reverb by @gamblor21 in #10196
- Audio Effect Multi-Tap Delay by @relic-se in #10258
- Audio Effect Phaser by @relic-se in #10304
- Add selective collect to memory allocations by @tannewt in #10264
- Increase CFG_TUH_ENUMERATION_BUFSIZE so that USB devices with long descriptors are recognized by @rianadon in #10281
- Wifi power management by @dhalbert in #10271
- increase default PYSTACK size from 1536 to 2048 by @dhalbert in #10236
- Change mix calculation on
audiodelays.Echo
to allow full range. by @relic-se in #9994 - Add working_directory for subsequent code file by @tannewt in #10263
- Run background tasks during display refresh by @tannewt in #10277
- Fix for fixed point overflow in synthio by @gamblor21 in #10288
- Implement use_global_block_protection_lock for write-enabling flash. by @eightycc in #10249
- fix swapped argument required vars in bitmaptools args helper by @FoamyGuy in #10253
- update frozen libraries, especially asyncio by @dhalbert in #10251
- extmod/modasyncio.c: remove push_head, push_sorted, pop_head by @dhalbert in #10244
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Upgrade ESP-IDF v5.3.2 to v5.4.1 by @eightycc in #10267
- ESP: add MAC address to boot_out.txt (for wifi boards) by @Neradoc in #10239
i.MX
Nordic
renode
RP2
- Add touchio pullup rp2350 by @todbot in #10227
- Implement BOOTSEL button entry to safe mode for RP2. by @eightycc in #10231
- rp2pio mov_status_type and mov_status_n by @burtyb in #10262
- Fix RP2xxx I2SOut reversed channels by @dhalbert in #10250
- Tweak audio playback on RP2 by @tannewt in #10299
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
- Add Blues Cygnet Feather (STM32L433) board by @Bucknalla in #10211
- Added peripheral support for Daisy Seed stm32H750 board by @snkYmkrct in #10198
- boards/oxocard_*/board.c: Fix vertical offset for LCD screen by @supcik in #10302
- Seeed Xiao ESP32-C6: Add user LED to pins.c by @KanyonKris in #10273
Documentation changes
Build and infrastructure changes
Translation additions and improvements
New boards
- Feather RP2350 adalogger by @BlitzCityDIY in #10254
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_sol
board.
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.
New Contributors
- @Bucknalla made their first contribution in #10211
- @KanyonKris made their first contribution in #10273
- @rianadon made their first contribution in #10281
Full Changelog: 10.0.0-alpha.2...10.0.0-alpha.3
CircuitPython 10.0.0-alpha.2
This is CircuitPython 10.0.0-alpha.2, an alpha release for 10.0.0. Further features, changes, and bug fixes will be added before the final release of 10.0.0.
Highlights of this release
tilepalettemapper.TilePaletteMapper
now supportsdisplayio.ColorConverter
.
Incompatibility warnings
synthio.BlockBiquad
has been renamed tosynthio.Biquad
. The old deprecatedsynthio.Biquad
has been removed, as well assynthio.Synthesizer.low_pass_filter
,synthio.Synthesizer.high_pass_filter
, andsynthio.Synthesizer.band_pass_filter
. Coefficients frombiquad_filter_state
have been moved intosynthio_biquad
(biquad_filter_state
is still used for input and output state).- The
displayio
bindings deprecated in 9.x.x have been removed:busdisplay.BusDisplay
replacesdisplayio.Display
.fourwire.FourWire
replacesdisplayio.Fourwire
.epaperdisplay.EPaperDisplay
replacesdisplayio.EPaperDisplay
.i2cdisplaybus.I2CDisplayBus
replacesdisplayio.I2CDisplay
.
os.uname().sysname
andos.uname().nodename
now are set toMICROPY_HW_MCU_NAME
uniformly across all ports.watchdog.WatchDogTimer.deinit()
is 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
This release also includes fixes and changes through CircuitPython 9.2.7.
Fixes and enhancements
synthio.BlockBiquad
is renamed tosynthio.Biquad
, and replaces the old deprecatedsynthio.Biquad
. #10213. Thanks @relic-se.- Add
lvfontio.OnDiskFont
to upport on-disk fonts forterminalio
. #10208. Thanks @tannewt. - Update TinyUSB. Close device endpoints as needed. #10194. Thanks @tannewt.
- Remove deprecated
displayio
bus bindings. #10193. Thanks @dhalbert. tilepalettemapper.TilePaletteMapper
now supportsdisplayio.ColorConverter
. #10173. Thanks @FoamyGuy.- Use
MICROPY_HW_MCU_NAME
foros.uname().sysname
andnodename
for all ports. #10145. Thanks @eightycc. - Remove
watchdog.WatchDogTimer.deinit()
. #10144. Thanks @eightycc.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
Nordic
renode
RP2
- Fix USB host issues. #10221. Thanks @tannewt.
- Force critical-section enter/exit routines to be in RAM instead of flash. #10219. Thanks @tannewt.
SAMx
SiLabs
Spresense
STM
Zephyr
Individual boards
- STM32F412G_DISCO: fix typo in chip name. #10150. Thanks @page200.
- WIZnet-5100S-EVB-Pico, EVB-Pico2, W5500 Pico2: normalize pin names and default devices. #10199. Thanks @fasteddy516.
Documentation changes
Build and infrastructure changes
- Fix version determination for multi-digit version numbers. #10216. Thanks @tannewt.
CIRCUITPY_FULL_BUILD
now controls more language features, for uniformity. #10152. Thanks @dhalbert.- Add pin validation to a manual USB test. #10148. Thanks @FoamyGuy.
Translation additions and improvements
New boards
- WIZnet W5500-EVB-Pico2. #10179. Thanks @fasteddy516.
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_sol
board.
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.7
This is CircuitPython 9.2.7, 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
- Bug fixes.
Incompatibility warnings
- Uses of deprecated
displayio
bindings are now called out with warnings. For instance,displayio.Display
is 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
- Fix
TileGrid.contains()
when used with subclasses ofTileGrid
. #10192. Thanks @FoamyGuy. - Allow
terminalio.Terminal
with height of 1. #10210. Thanks @FoamyGuy. - Fix regression that did not treat MP3 samples as signed. #10185. Thanks @jepler.
- Correct
len()
of akeypad.EventQueue
. #10184. Thanks @dhalbert. - Disallow identical left and right channel pins in
audioio.AudioOut
. #10182. Thanks @dhalbert. - Fix regression that did not allow reading what was in a
usb_cdc.Serial
buffer when USB was disconnected. #10177. Thanks @Neradoc.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Guard against multiple deinit of
PulseIn
andPulseOut
objects. #10190. Thanks @eightycc. - Work around ESP-IDF bug that randomly swaps left and right channels in
audioio.AudioOut
. #10182. Thanks @dhalbert.
i.MX
Nordic
renode
RP2
- Fix pin validation for
analogbufio.BufferedIn
on RP2350B. #10202. Thanks @dhalbert. - Disallow using
board.A3
(GPIO29) withanalogbufio.BufferedIn
on CYW43 boards. #10202. Thanks @dhalbert. - Use
-isystem
to simplify including the correct header files for raspberrypi builds. #10188. Thanks @jepler. - Add
-Wype-limits
gcc warnings, and fix them. #10187. Thanks @jepler. - Fix multiple PIO issues. #10186. Thanks @eightycc.
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_sol
board.
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.6
This is CircuitPython 9.2.6, 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
storage.remount("/", readonly=False)
regression. - Fix RP2xxx WiFi mDNS limitations.
Incompatibility warnings
- Uses of deprecated
displayio
bindings are now called out with warnings. For instance,displayio.Display
is 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
- Adafruit Fruit Jam: fix button names. #10156. Thanks @dhalbert.
- Heltec ESP32-S3-WIFI-LoRa-V3: remove unusuable RFM9x frozen library. #10146. Thanks @cmarxmeier.
- Waveshare ESP32-S3-GEEK: add
board.SPI()
; fix SD SPI. #10164. Thanks @Neradoc.
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_sol
board.
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.5
This is CircuitPython 9.2.5, 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
- Update frozen modules.
- Enable function attributes and reverse arithmetic operators on most boards.
displayio
:- Add
tilepalettemapper
. - add VT100 escape code support for scrolling and colors.
- Add
synthio
andaudiodelays
additions- Add
audioio
on Espressif. - Add
spitarget
on SAMx (enabled on most SAMx5x boards). - Initial work on a Zephyr port.
- Bug fixes.
Incompatibility warnings
- Uses of deprecated
displayio
bindings are now called out with warnings. For instance,displayio.Display
is 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
- Update frozen modules. #10139. Thanks @dhalbert.
- Enable warnings when using older
displayio
bindings deprecated in 9.x. #10137. Thanks @eightycc. - Enable function attributes and reverse arithmetic operators on most boards. #10134. Thanks @eightycc.
- Add support for a Python-writable
/saves
partition in addition to CIRCUITPY. #10122. Thanks @tannewt. - Add
tilepalettemapper
fordisplayio
. #10113. Thanks @FoamyGuy. - Add VT100 escape code scrolling in
terminalio
. #10110, #10108. Thanks @RetiredWizard. - Add VT100 escape codes for colors in
terminalio
. #10105. Thanks @RetiredWizard. - Check for empty SSID before attempting to start web workflow. #10103. Thanks @dhalbert.
- Allow a
CIRCUITPY_TERMINAL_SCALE
value insettings.toml
, to scale theterminalio
display. #10099. Thanks @RetiredWizard. - Fix loading small monochrome
OnDiskBitmap
s. #10097. Thanks @SamantazFox. - Fix uses of
m_realloc()
andm_free
whenMICROPY_MALLOC_USES_ALLOCATED_SIZE
is set. #10094. Thanks @SamantazFox. - Improve
displayio.ColorConverter
accuracy for 5:5:5-bit colors. #10076. Thanks @qutefox. - Add `supervisor.runtime.display. #10062. Thanks @jepler.
- Restore
console_uart_printf()
internally; fix use of__ZEPHYR__
. #10057. Thanks @eightycc. - Add
audiodelays.PitchShift
effect. #10052. Thanks @relic-se. - Fix
CIRCUITPY_SERIAL_GUARDING
inserial_early_init()
. #10043. Thanks @eightycc. - Provide and use a a default
__exit__()
object, to save space. #10040. Thanks @jepler. - Reduce audio processing code size. #10036. Thanks @jepler.
- Skip over unused data in
WaveFile
s. #10013. Thanks @MarshallMiller. - Add
synthio.BlockBiquad
enhanced biquad filter support. #9804. Thanks @jepler.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
- Remove debug prints in
PDMIn
. #10101. Thanks @dhalbert. - Make enabling BLE on 4MB Espressif boards possible. #10089. Thanks @Neradoc.
- Add
audioio
. #9995. Thanks @MarshallMiller.
i.MX
Nordic
renode
RP2
- Use Adafruit fork of Pico-PIO-USB. #10119. Thanks @tannewt.
- Fix
picodvi.Framebuffer
issues. #10116. Thanks @eightycc. - Fix interrupt handling during flash writes. #10116, #10111. Thanks @eightycc.
- Update pico-sdk to 2.1.1. #10083. Thanks @eightycc.
- Fix
picodvi.Framebuffer
screen height for 640x480. #10069. Thanks @mattuna15. - Autoconfigure
picodvi
display settings. #10062. Thanks @jepler. - Don't block
DMA_IRQ_1
when disabling interrupts. #10049. Thanks @jepler. - Remove previously-added delay before initialization of CYW43. #10038. Thanks @bablokb.
- Speed up network operations by reducing
lwip
timer intervals; allocatelwip
memory dynamically. #10027. Thanks @eightycc. - Fix PIO state machine allocation for duplicate programs. #10025. Thanks @jepler.
- Fix peripheral clock restoration after light sleep. #10018. Thanks @dhalbert.
- Update Pico-PIO-USB. #10015. Thanks @jepler.
SAMx
- Add
spitarget
(SPI secondary) support. #9385. Thanks @Bruin-Spacecraft-Group.
SiLabs
Spresense
STM
Zephyr
Individual boards
- 01Space 0.42 OLED ESP32C3: reduce default transmit power. #10085. Thanks @bill88t.
- Heltec Wireless Paper: fix LoRa SPI pin choice. #10021. Thanks @SeanTheITGuy.
- LILYGO TEMBED ESP32S3: use wheel LEDs for status. #10126. Thanks @Neradoc.
- Particle Boron: support 8MB flash chip. #10098. Thanks @dhalbert.
Documentation changes
- Update
picodvi
display mode documentation. #10118. Thanks @FoamyGuy. - Use shorthand type names for
displayio
types. #10109. Thanks @jepler. - Fix
usb_cdc.Serial.read()
documentation. #10019. Thanks @dhalbert.
Build and infrastructure changes
- Add manual tests for USB host mouse support. #10128. Thanks @FoamyGuy.
- Fix custom build CI workflow. #10123. Thanks @Neradoc.
- Fix how to find board info for building and documentaiton. #10121, #10041. Thanks @tannewt, @jepler.
- Use
MP_ROM_QSTR
instead ofMP_OBJ_NEW_QSTR
. #10058. Thanks @jepler. - Require specific
ruff
version. #10035. Thanks @jepler.
Translation additions and improvements
- Thanks for translations:
- @andibing (English - UK)
- @FK-sauve (French)
- @hexthat (Chinese - Pinyin)
- @karlosgliberal (Spanish)
- Jiayin Liu (Chinese - Pinyin)
- @wtuemura (Portugese - Brazil)
New boards
- Adafruit Fruit Jam: #10136, #10135, #10114, #10081. Thanks @tannewt, @dhalbert.
- Daisy Seed: #9974. Thanks @snkYmkrct.
- Elecrow CrowPanel 4.2 EPaper. #10107. Thanks @SeanTheITGuy.
- Heltec Vison Master E290. #10090. Thanks @SeanTheITGuy.
- HXR SAO DIgital Multimeter. #10092. Thanks @flummer.
- LILYGO T-Dongle S3. #10065. Thanks @deisterhold.
- LILYGO T-QT PRO NO PSRAM and PSRAM. #10131. Thanks @Neradoc.
- PROVES Kit v4. #10127. Thanks @proveskit.
- Red ESP32-S2-WROOM. #10060. Thanks @Glodigit.
- Spotpear ESP32C3 LCD 1.69. #10106. Thanks @SeanTheITGuy.
- WEMOS LOLIN S3 MINI PRO 4MB Flash 2MB PSRAM. #10088. Thanks @SeanTheITGuy.
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_sol
board.
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.4
This is CircuitPython 9.2.4, 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
- Update frozen modules, including a fix for
adafruit_requests
. audiofilters
: addDistortion
and implement LFO ticking.- Add
canio
support for i.MX boards. - Fix RP2
picodvi
crash. - Fix STM USB crashes.
Incompatibility warnings
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 families
Changes
Fixes and enhancements
- Update frozen modules, including a fix for
adafruit_requests
. #10012. Thanks @dhalbert. MP3Decoder
can now handle 40-byte format headers. #10001. Thanks @marshalmiller.audiofilters
: addDistortion
and implement LFO ticking. #9776. Thanks @relic-se.
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
- Add
canio
support. #9982. Thanks @SamantazFox and @qutefox.
Nordic
renode
RP2
- Fix regression re
offset
inrp2pio.StateMachine
. #10010. Thanks @jepler. - Use newer PIO resource handling API. #9999. Thanks @jepler.
- Better audio DMA error handling. #9989. Thanks @eightycc.
- Fix
picodvi
crashes due to DMA handling regression. #9980. Thanks @dhalbert.
SAMx
SiLabs
Spresense
STM
Individual boards
- Adafruit Metro RP2350: enable USB host by default. #10005. Thanks @jepler.
- Adafruit Sparkle Motion: correct and add pin aliases. #9993. Thanks @BlitzCityDIY.
- Spotpear ESP32C3 1.44" LCD: Use legacy 4MB layout to avoid bootloop due to
_bleio
enabling. #9997. Thanks @SeanTheITGuy. - Waveshare ESP32-C6 LCD 1.47": allow sharing of SPI bus. #9987. Thanks @bwshockley.
Documentation changes
Build and infrastructure changes
Translation additions and improvements
New boards
- Waveshare ESP32-C6 LCD 1.47". #9984. Thanks @bwshockley.
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_sol
board.
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.3
This is CircuitPython 9.2.3, 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 ESP32-S3 regression: did not connect properly to USB without an interposed hub.
- New boards: Adafruit Sparkle Motion and Mini Sparkle Motion, M5Stack StampS3.
Incompatibility warnings
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 families
Changes
Fixes and enhancements
Port and board-specific changes
Analog Devices
Broadcom
Espressif
i.MX
Nordic
renode
RP2
- Use defined constants for CYW43 pins. #9945. Thanks @arturo182.
SAMx
SiLabs
Spresense
STM
- Prospective fix for STM32H7 crashes on recent builds. #9962, Thanks @snkYmkrct.
Individual boards
Documentation changes
- Document Windows limitation for
usb_midi.set_names()
. #9946. Thanks @dhalbert. - Fix
rtc
documentation typo. #9944. Thanks @KeithTheEE.
Build and infrastructure changes
- Improvements to serial console startup and logging. #9964. Thanks @eightycc.
- Fix version of
setuptools_scm
used forcircuitpython-stubs
. #9948. Thanks @jepler. - Find files with inline documentation using an inclusion instead of an exclusion list. #9947. Thanks @jepler.
Translation additions and improvements
- Thanks for translations:
- gfbdrgng (Russian)
- @wtuemura (Portugese - Brazil)
New boards
- Adafruit Mini Sparkle Motion Mini. #9963. Thanks @FoamyGuy.
- Adafruit Sparkle Motion. #9961. Thanks @BlitzCityDIY.
- M5Stack StampS3: #9950. Thanks @StellasFun.
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_sol
board.
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.