Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: adafruit/circuitpython

CircuitPython 10.0.0-beta.0

15 Jul 17:27
473557c
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 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 forESP32-S2 boards with 4MB flash, allowing more features to be included. This change was made for 4MB flashESP32-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 Espressifpulseio.PulseIn regression.

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 explainedhere. 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 theBOOT drive showing.
    • This bootloader update is only needed forESP32-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.bin file instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
  • 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).
  • Thedisplayio 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 CircuitPython 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4, ESP32-H2
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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.PulseIn DMA 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

Known issues

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 theDiscord chat to collaborate.

Contributors

  • @bborncr
  • @ddrown
  • @dhalbert
  • @UnexpectedMaker
  • @bablokb
  • @bill88t
  • @hexthat
  • @OmarEMbed
  • @wee-noise-makers
  • @rnirthe
bborncr, ddrown, and 8 other contributors
Loading

CircuitPython 10.0.0-alpha.8

08 Jul 20:07
e0e7c82
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 10.0.0-alpha.8, 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

  • Increase the firmware partition size forESP32-S3 boards with 4MB flash, allowing more features to be included, including BLE.You must update the TinyUF2 bootloader on these boards. See below.
  • Merge updates from MicroPython v1.25.0.
  • Fix regressions caused by SD automount capability.
  • AddTerminal.cursor_x and.cursor_y.
  • Addpicodvi.Framebuffer.color_depth.

Incompatibility warnings

  • You must update the TinyUF2 bootloader on all ESP32-S3 4MB flash boards to TinyUF2 0.33.0 or later.
    • The CircuitPython UF2 builds for these boards now assume a firmware partition of at 2.8MB (double the old size), as explainedhere. Updating the TinyUF2 bootloader will update the partition size. Failure to update the bootloader will likely cause a UF2 load to fail for 10.0.0-alpha.8 and later: you will remain in the bootloader, with theBOOT drive showing.
    • This bootloader update is only needed now forESP32-S3 with 4MB flash boards; other ESP32-S3 boards are fine. Later this change will be made for 4MB ESP32-S2 boards. This bootloader update is compatible with CircuitPython 9.1.0 and later.
    • If you are loading CircuitPython using a.bin file instead of a UF2, the partition table is included in the.bin, and you don't need to do anything.
  • 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).
  • Thedisplayio 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 CircuitPython 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4, ESP32-H2
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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

  • Expand firmware partition on ESP32-S3 boards, merging with OTA update partition.#10458. Thanks@dhalbert.

i.MX

Nordic

renode

RP2

SAMx

SiLabs

Spresense

STM

Zephyr

Individual boards

Documentation changes

Build and infrastructure changes

  • Revert latex docs build workaround after weblate web traffic change.#10435. Thanks@FoamyGuy.

Translation additions and improvements

  • Thanks for translations:
    • @CrackXT (multiple languages, especially German)
    • @dhalbert (Indonesian, Italian, Turkish)

New boards

Known issues

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 theDiscord chat to collaborate.

Contributors

  • @jepler
  • @FoamyGuy
  • @dhalbert
  • @CrackXT
  • @ComplexSymbol
jepler, FoamyGuy, and 3 other contributors
Loading

CircuitPython 10.0.0-alpha.7

17 Jun 20:08
c5128a9
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 10.0.0-alpha.7, 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

  • Update frozen modules.
  • Merge updates from MicroPython v1.24.1.
  • Espressif:
    • Expand the CircuitPython firmware partition on non-USB boards, allowing more space for features in the future.
    • Fixpulseio.PulseIn length limitation.
    • Initial implementation of MicroROS.
  • Nordic: reinitialize BLE properly after deep sleep.
  • Incorporate fixes from CircuitPython 9.2.8 and later:
    • Fixdeque bug.
    • Fix I2S audio file read causing memory corruption.
    • Support "Spectra6" six-color e-ink displays.
    • Fixaudiodelays.Delay whenfreq_shift=True.
    • Board fixes.

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).
  • Thedisplayio 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 CircuitPython 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4, ESP32-H2
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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

  • Document thatSleepMemory is now supported on RP2040.#10412. Thanks@wersimmon.
  • Improve documentation for RP23050 erratum E9keypad workarounds.#10382. Thanks@dhalbert.

Build and infrastructure changes

Translation additions and improvements

New boards

Known issues

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 theDiscord chat to collaborate.

Contributors

  • @wersimmon
  • @baldengineer
  • @jamesbowman
  • @jepler
  • @piit79
  • @FoamyGuy
  • @dhalbert
  • @hierophect
  • @Neradoc
  • @andibing
  • @bablokb
  • @relic-se
  • @hexthat
  • @Sola85
  • @samdev-7
  • @CrackXT
  • @tekktrik
  • @FK-sauve
  • @jonnybergdahl
  • @Timeline8
wersimmon, baldengineer, and 18 other contributors
Loading

CircuitPython 9.2.8

28 May 20:43
361dbc0
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

This isCircuitPython 9.2.8, 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. Seethese instructions for updating your bootloader.

Highlights of this release

  • Fixdeque bug.
  • Fix I2S audio file read causing memory corruption.
  • Support "Spectra6" six-color e-ink displays.
  • Fixaudiodelays.Delay whenfreq_shift=True.
  • Board fixes.

Incompatibility warnings

  • Uses of deprecateddisplayio 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: multiplatform RTOS: testing with nRF5340, nRF54L15, RA6M5, STM32H7

Changes

Fixes and enhancements

  • Fix buffer overflow indeque subscripting.#10380. Thanks@bablokb.
  • Support "Spectra6" six-color e-ink displays.#10316. Thanks@bablokb.
  • Fix handling of stereo audio withinaudiodelays.Delay whenfreq_shift=True.#10252. Thanks@relic-se.

Port and board-specific changes

Analog Devices

Broadcom

Espressif

  • Fix memory corruption in I2S audio file pre-loading.#10284. Thanks@bablokb.

i.MX

Nordic

renode

RP2

SAMx

SiLabs

Spresense

STM

Zephyr

Individual boards

  • 42. Keebs Frood: update to version 9.#10335. Thanks@piit79.
  • Pimoroni Inky Frame 5.7": Fixed reversedboard.I2C() SDA/SCL pins.#10279. Thanks@bablokb.
  • Pimoroni Inky Frame 7.3": Fixed reversedboard.I2C() SDA/SCL pins.#10279. Thanks@bablokb.

Documentation changes

Build and infrastructure changes

Translation additions and improvements

New boards

Known issues

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 theDiscord chat to collaborate.

Contributors

  • @piit79
  • @bablokb
  • @relic-se
piit79, bablokb, and relic-se
Assets2
Loading

CircuitPython 10.0.0-alpha.6

17 May 20:35
d88fe10
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 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).
  • Thedisplayio 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4, ESP32-H2
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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

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 theDiscord chat to collaborate.

Contributors

  • @Neradoc
  • @eightycc
Neradoc and eightycc
Loading

CircuitPython 10.0.0-alpha.5

15 May 20:13
9072fe6
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 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 oftime.sleep() and similar functions.
  • AddMixerVoice.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).
  • Thedisplayio 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4, ESP32-H2
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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

  • Fix BLE not working by adding missing linker fragment on RISCV processors.#10321. Thanks@eightycc.
  • Fix intermittent ESP32 crashes by wrappinglongjmp.#10328. Thanks@eightycc.

i.MX

Nordic

  • Fixmicrocontroller.cpu.reset_reason after deep sleep and further reset.#10344. Thanks@dhalbert.

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

Translation additions and improvements

New boards

Known issues

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 theDiscord chat to collaborate.

New Contributors

Contributors

  • @tannewt
  • @rhammell
  • @bergdahl
  • @FoamyGuy
  • @dhalbert
  • @eightycc
  • @relic-se
  • @BlitzCityDIY
  • @emmanuel-ferdman
  • @jonnybergdahl
tannewt, rhammell, and 8 other contributors
Loading

CircuitPython 10.0.0-alpha.4

05 May 03:40
04b17e1
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 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).
  • Thedisplayio 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4, ESP32-H2
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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

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 theDiscord chat to collaborate.

New Contributors

Full Changelog:10.0.0-alpha.3...10.0.0-alpha.4

Contributors

  • @supcik
  • @tannewt
  • @todbot
  • @burtyb
  • @FoamyGuy
  • @dhalbert
  • @Bucknalla
  • @snkYmkrct
  • @KanyonKris
  • @Neradoc
  • @eightycc
  • @rianadon
  • @relic-se
  • @BlitzCityDIY
  • @gamblor21
supcik, tannewt, and 13 other contributors
Loading

CircuitPython 10.0.0-alpha.3

02 May 17:48
054c0c1
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 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).
  • Thedisplayio 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4, ESP32-H2
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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

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 theDiscord chat to collaborate.

New Contributors

Full Changelog:10.0.0-alpha.2...10.0.0-alpha.3

Contributors

  • @supcik
  • @tannewt
  • @todbot
  • @burtyb
  • @FoamyGuy
  • @dhalbert
  • @Bucknalla
  • @snkYmkrct
  • @KanyonKris
  • @Neradoc
  • @eightycc
  • @rianadon
  • @relic-se
  • @BlitzCityDIY
  • @gamblor21
supcik, tannewt, and 13 other contributors
Loading

CircuitPython 10.0.0-alpha.2

04 Apr 18:06
36ec480
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
Pre-release

This isCircuitPython 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).
  • Thedisplayio 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: 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.
  • Addlvfontio.OnDiskFont to upport on-disk fonts forterminalio.#10208. Thanks@tannewt.
  • Update TinyUSB. Close device endpoints as needed.#10194. Thanks@tannewt.
  • Remove deprecateddisplayio bus bindings.#10193. Thanks@dhalbert.
  • tilepalettemapper.TilePaletteMapper now supportsdisplayio.ColorConverter.#10173. Thanks@FoamyGuy.
  • UseMICROPY_HW_MCU_NAME foros.uname().sysname andnodename for all ports.#10145. Thanks@eightycc.
  • Removewatchdog.WatchDogTimer.deinit().#10144. Thanks@eightycc.

Port and board-specific changes

Analog Devices

Broadcom

Espressif

i.MX

Nordic

renode

RP2

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

Known issues

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 theDiscord chat to collaborate.

Contributors

  • @tannewt
  • @FoamyGuy
  • @dhalbert
  • @eightycc
  • @relic-se
  • @fasteddy516
  • @page200
tannewt, FoamyGuy, and 5 other contributors
Loading
PeterFalken, sjev, and tkomde reacted with thumbs up emoji
3 people reacted

CircuitPython 9.2.7

01 Apr 18:53
376e3ba
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

This isCircuitPython 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. Seethese instructions for updating your bootloader.

Highlights of this release

  • Bug fixes.

Incompatibility warnings

  • Uses of deprecateddisplayio 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 thedownloads page oncircuitpython.org. The site makes it easy to select the correct file and language for your board.

Installation

To install follow the instructions in theWelcome to CircuitPython! guide. To install the latest libraries, seethis page in that guide.

Trycode.circuitpython.org orthe 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 inreadthedocs.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, SAMx5x
  • cxd56: Sony Spresense
  • espressif: Espressif ESP32, ESP32-S2, ESP32-S3, ESP32-C2, ESP32-C3, ESP32-C6
  • nordic: Nordic nRF52840, nRF52833
  • raspberrypi: Raspberry Pi RP2040, RP2350
  • stm: ST STM32F4 chip family

These ports are considered alpha and will have bugs and missing functionality:

  • analog: Analog Devices MAX32690
  • broadcom: Raspberry Pi boards such as RPi 4, RPi Zero 2W
  • espressif: ESP32-P4
  • litex: fomu
  • mimxrt10xx: NXP i.MX RT10xxx
  • renode: hardware simulator
  • silabs: Silicon Labs MG24 family
  • stm: ST non-STM32F4 chip families
  • zephyr: multiplatform RTOS: testing with nRF5340, nRF54L15, RA6M5, STM32H7

Changes

Fixes and enhancements

  • FixTileGrid.contains() when used with subclasses ofTileGrid.#10192. Thanks@FoamyGuy.
  • Allowterminalio.Terminal with height of 1.#10210. Thanks@FoamyGuy.
  • Fix regression that did not treat MP3 samples as signed.#10185. Thanks@jepler.
  • Correctlen() of akeypad.EventQueue.#10184. Thanks@dhalbert.
  • Disallow identical left and right channel pins inaudioio.AudioOut.#10182. Thanks@dhalbert.
  • Fix regression that did not allow reading what was in ausb_cdc.Serial buffer when USB was disconnected.#10177. Thanks@Neradoc.

Port and board-specific changes

Analog Devices

Broadcom

Espressif

  • Guard against multiple deinit ofPulseIn andPulseOut objects.#10190. Thanks@eightycc.
  • Work around ESP-IDF bug that randomly swaps left and right channels inaudioio.AudioOut.#10182. Thanks@dhalbert.

i.MX

Nordic

renode

RP2

  • Fix pin validation foranalogbufio.BufferedIn on RP2350B.#10202. Thanks@dhalbert.
  • Disallow usingboard.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

  • Waveshare ESP32-C6 LCD 1.47: fix NeoPixel colors.#10204. Thanks@Neradoc.

Documentation changes

Build and infrastructure changes

Translation additions and improvements

New boards

Known issues

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 theDiscord chat to collaborate.

Contributors

  • @jepler
  • @FoamyGuy
  • @dhalbert
  • @Neradoc
  • @eightycc
jepler, FoamyGuy, and 3 other contributors
Loading
Previous13452425
Previous

[8]ページ先頭

©2009-2025 Movatter.jp