Merged
Conversation
|
hathach
approved these changes
Apr 3, 2026
Owner
hathach
left a comment
There was a problem hiding this comment.
Thanks for catching this copy-paste bug! Verified the pin assignments against the NXP RT1062 SDK headers and PJRC docs — LPUART6 on GPIO_AD_B0_02/03 is correct. LGTM!
Collaborator
|
A bit late, I've just regenerated config files with MCUXpresso : https://github.com/hathach/tinyusb/tree/teensy_config |
Owner
|
@HiFiPhile ah right, I forgot we use the pintool for this, please make a PR and merge :) |
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.
This PR fixes a bug for the UART pin initialization for Teensy boards.
For the teensy_40 and teensy_41 boards, in
board.h,we correctly select UART6However, there was a copy-paste bug in
pin_mux.cwhere we instead muxed UART1 to the chip pads.This is now fixed by muxing the correct UART6 to the respective output pins.
This is also convenient because UART1 is not even accessible via the headers on the teensy_40.