Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adafruit/circuitpython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 10.1.3
Choose a base ref
...
head repository: adafruit/circuitpython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 10.1.x
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 22, 2026

  1. call reset_all_pins() in main() after port_init()

    Before #10699, `reset_all_pins()` was called in `reset_port()`. That changed to reset all pins in main
    after the finalizers ran. However, this mean that pins were not all reset on power-up or hard reset.
    This caused #1841, because the power control pin for Feather S3 TFT was not powering the display as
    required before the display was reset.
    
    Add a call to `reset_all_pins()` early in `main()` to serve the same purpose.
    dhalbert committed Feb 22, 2026
    Configuration menu
    Copy the full SHA
    d2d6094 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2026

  1. Merge pull request #10843 from dhalbert/reset-all-pins-in-main

    call reset_all_pins() in main() after port_init()
    tannewt authored Feb 23, 2026
    Configuration menu
    Copy the full SHA
    7ecbb1b View commit details
    Browse the repository at this point in the history
Loading