-
Notifications
You must be signed in to change notification settings - Fork 2k
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
boards/stm32f429i-disc1: add initial support #8868
boards/stm32f429i-disc1: add initial support #8868
Conversation
ad5c959
to
e96f3ff
Compare
Can we finish first #8475 before adding more ST boards? |
Also, can this board/CPU be tested for xtimer backoff issues (#8807) |
just a side question here : |
#define LED0_PIN GPIO_PIN(PORT_G, 13) | ||
#define LED1_PIN GPIO_PIN(PORT_G, 14) | ||
#define LED2_PIN GPIO_PIN(PORT_B, 13) | ||
#define LED3_PIN GPIO_PIN(PORT_C, 5) |
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.
I'm wondering if LED2 & LED3 should be declared, there are related to USB OTG hardware right ?
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.
You are right, the datasheet is not calling them user LEDs by the way, I'll remove them.
I ran a few tests and the board was working fine. I hope I'll be able to run some test with #8623 soon ! |
e96f3ff
to
00c5e7f
Compare
This looks good, I'll try to test the screen whenever I find some times :) |
It works with #8807 |
00c5e7f
to
5c369a8
Compare
be05a71
to
cf58784
Compare
cf58784
to
aa7fad6
Compare
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.
Tested (saul, uart, timer, spi), ACK.
Contribution description
This PR adds a very basic support for the STM32F429I-DISC1 board.
This boards embeds an ILI9341 display and could be used with #8623 (not tested yet though).
Only one uart, timer and spi are configured for the moment.
Issues/PRs references
None