Merge 10.1.x to main 2026 03 09#10877
Merged
tannewt merged 7 commits intoadafruit:mainfrom Mar 10, 2026
Merged
Conversation
Before adafruit#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 adafruit#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.
call reset_all_pins() in main() after port_init()
This was provoked by a specific safe-mode with SPI objects that were copied over VM instantiations, but there were some other cases. Also did some style cleanup.
…tions in `*_make_new()`, allocate obj only after all validations
atmel-samd SPI: don't mark_deinit before resetting pin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Merge #10843, #10872, #10874 from
10.1.xintomain.#10872 in particular made small changes to many files, so that's why so many are changed in this PR as well.