-
Notifications
You must be signed in to change notification settings - Fork 2.1k
boards/stm32f429i-disco: add support #14122
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-disco: add support #14122
Conversation
Not the case for mine. What is the revision of your board ? |
Huh, odd - I just updated the on-board ST-Link to the latest firmware, it only provides ST-LINK functionality and no ACM functionality. It has a sticker on the backside that says
It's |
|
I think I could do the same as for |
bca82ea
to
2d4701a
Compare
2d4701a
to
5bee19d
Compare
5bee19d
to
788ecf1
Compare
The boards/stm32f429i-disco board is an ealier version of the stm32f429i-disc1. The boards are compatible with the difference that the older on-board debugger does not provide a UART connection. To spare the user of having to wire up a USB-TTL adapter, enable CDC-ACM on the micro-USB port.
788ecf1
to
b082368
Compare
How do you manage the serial port automatically ? If you plug the debugger USB first, it will appear as /dev/ttyACM0 on the host computer. Then if you plug the second USB (User USB) to the host, with CDC ACM, it will show up as |
No, the STLINKv2 on the board does not provide a CDC ACM interface. |
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.
Looks good to me and I trust @benpicco that it works.
ACK
Contribution description
There is an older version of the
stm32f429i-disc1
called thestm32f429i-disco
. From what I could gather, they are completely exchangeable.The debugger on the
stm32f429i-disco
however does not provide a UART connection.To spare the user of having to wire up a USB-TTL adapter, enable CDC-ACM on the micro-USB port.
Testing procedure
Flash any example on the
stm32f429i-disco
board.You should have a serial console on the micro-USB connector of the board.
Issues/PRs references
e01a95d is taken from #12778 to allow
stdio_cdc_acm
on stm32