-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic support for adding board variants for Teensy 4.x boards. #750
Open
KurtE
wants to merge
37
commits into
PaulStoffregen:master
Choose a base branch
from
KurtE:variants_override
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 11 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
9a03c7d
fix leap year calculation bug in makeTime()
A-Dunstan 90810a7
add missing overrides for global operator new
A-Dunstan 345566f
Minimal changes to start to support variants
KurtE 1006612
Allow XBar table to be be defined external
KurtE fc4f4e5
Allow the PWM table to be replaced by variant
KurtE d82de1f
Add analaog and maybe SerialX overrides WIP
KurtE 3f3faa5
Update core_pin_names.h
KurtE 4323123
Fix Serial6 and 7 for Port addr passed in
KurtE 85c8e51
Update HardwareSerial5.cpp
KurtE 87a6366
remove warning of unused variable
KurtE 56780d7
Add NOEXEC comment with link to example code
PaulStoffregen 2b69ca9
Fix T3.x SerialEventX when format is passed in.
KurtE 2d1fd0e
added set_psram_clock
mjs513 cdb3ecb
Merge pull request #3 from mjs513/variants_override
KurtE 243cd11
do not enable cts when setting alternate rx xbar pin
sndsgd 59b8008
Merge pull request #754 from sndsgd/serial-rx-xbar
PaulStoffregen 316d56e
Fix hardware serial serialEvent on Teensy 3.x
PaulStoffregen c7015ed
Merge pull request #742 from A-Dunstan/makeTime
PaulStoffregen a68833b
Check non-const pin number in digitalWriteFast, etc
PaulStoffregen e5cf16d
Fix extmem_realloc with NULL on Teensy 4.1
PaulStoffregen 4dd943c
Add clock speed comment
PaulStoffregen 0753ac2
Fix return type on __SSAT
PaulStoffregen 4b5097a
Merge pull request #743 from A-Dunstan/missing_new_overrides
PaulStoffregen f11c80a
FS class virtual destructor
PaulStoffregen 427a1a6
Minimal changes to start to support variants
KurtE 4d5e2bb
Allow XBar table to be be defined external
KurtE cd78b0f
Allow the PWM table to be replaced by variant
KurtE 1982071
Add analaog and maybe SerialX overrides WIP
KurtE f565539
Update core_pin_names.h
KurtE 6321b45
Fix Serial6 and 7 for Port addr passed in
KurtE 7dcc441
Update HardwareSerial5.cpp
KurtE dce222f
remove warning of unused variable
KurtE 7ff631a
Fix T3.x SerialEventX when format is passed in.
KurtE b64f5e2
added set_psram_clock
mjs513 160f748
Merge branch 'variants_override' of https://github.com/KurtE/cores in…
KurtE 25143fa
HardwareSerial::attachRts - new optional parameter to invert signal
KurtE 15b3e1b
Changed API as you requested: attachRtsInverted
KurtE File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAICT the serial instances are just handed out in the order the pins are defined. So if I routed
LPUART4
to pins1
and0
, those should be associated withSerial1
.It might make sense to create some more defines so custom boards can do the same?