-
-
Notifications
You must be signed in to change notification settings - Fork 663
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
T3W1 PCB bring-up #4350
Open
TychoVrahe
wants to merge
22
commits into
main
Choose a base branch
from
tychovrahe/T3W1/led
base: main
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
T3W1 PCB bring-up #4350
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
ffae78b
fix(core): fix clock setting on U5 for 32 MHz HSE
TychoVrahe 7702173
chore(core): remove old RGB LED driver
TychoVrahe e357339
feat(core): implement RGB LED driver for T3W1
TychoVrahe b8daebf
feat(core): add RGB LED syscalls
TychoVrahe 79f720a
feat(core): add power button to T3W1 board rev A
TychoVrahe 8b5f79b
fix(core): fix systick frequency computation by utilizing HSE_VALUE p…
TychoVrahe 2489965
feat(core): support 32MHz HSE in USB driver (HS internal PHY only)
TychoVrahe 69079b4
chore(core): improve T3W1 driver mock so it doesn't crash
TychoVrahe 650daeb
feat(core): allow touchless mode in T3W1 bootloader
TychoVrahe 7dbac51
fix(core): fix MPU kernel sram setting for STM32U5G
TychoVrahe c538c56
feat(core): add support for SBU on T3W1
TychoVrahe 6aad200
feat(core): support optiga on T3W1
TychoVrahe c927e91
fixup! feat(core): allow touchless mode in T3W1 bootloader
TychoVrahe 9aa2f2b
fix(core): fix prodtest for 32 bit color models
TychoVrahe 78a1829
fixup! fix(core): fix MPU kernel sram setting for STM32U5G
TychoVrahe 7743a1b
fixup! fixup! fix(core): fix MPU kernel sram setting for STM32U5G
TychoVrahe 42dcd36
fixup! fixup! fixup! fix(core): fix MPU kernel sram setting for STM32U5G
TychoVrahe c4d30fd
fixup! fix(core): fix systick frequency computation by utilizing HSE_…
TychoVrahe 72413ea
fixup! fixup! fix(core): fix MPU kernel sram setting for STM32U5G
TychoVrahe 10e3635
fixup! fix(core): fix MPU kernel sram setting for STM32U5G
TychoVrahe 6b3babc
fixup! fix(core): fix MPU kernel sram setting for STM32U5G
TychoVrahe 0be697c
fix(core): separate bootargs from kernel/aux SRAM
TychoVrahe 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
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.
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.
By adding this, the
copy_fb_to_display
function now has the side effect of disabling the frame buffer (for both privileged and unprivileged modes). This slightly impacts the display API behavior - after callingdisplay_set_orientation
, the acquired frame buffer is no longer accessible. I believe we don’t need to fix this, but it’s important to be aware of it.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.
as discussed in person, lets postpone fixing this until needed