simplify UART handler, require Micropython version >=1.26#166
Merged
ThomasAkam merged 1 commit intopyControl:devfrom Dec 2, 2025
Merged
simplify UART handler, require Micropython version >=1.26#166ThomasAkam merged 1 commit intopyControl:devfrom
ThomasAkam merged 1 commit intopyControl:devfrom
Conversation
Collaborator
|
Thanks Andy |
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.
previously, there was oddness with the pyboard v1.1 (STM32F4) IRQ_RXIDLE
from the UART docs:
This difference in how IRQ_RXIDLE worked on pyboard v1.1 and pyboard d-series led to added complexity in UART_handler class where you had to specify
mcu=STM32_F4ormcu=STM32_F7The extra trigger after the first character has now been fixed in Micropython v1.26
from release notes:
This commit has changes that simplify the UART_handler class, with the caveat that it now requires Micropython >= 1.26