Adding as many UARTs as possible to NUCLEO_F746ZG #18462
Unanswered
mdaeron
asked this question in
STM32 / Pyboard
Replies: 1 comment
-
|
you can have a look at https://github.com/micropython/micropython/blob/master/ports/stm32/boards/stm32f746_af.csv |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Looking into the board definition for
NUCLEO_F746ZG, I see the following:Accordingly, in the REPL I can only define
machine.UART(2),machine.UART(3)andmachine.UART(6).I would like to add as many hardware UARTs as possible to the firmware.
Question 1: Should I just add lines such as below?
Question 2: How do I choose which pins to assign to the new UARTs? Should I go through the specs and identify pins that are compatible with each new UART and not already used?
Question 3: How many UARTS can I add in this way? Should I go through the specs to find out how many UART devices exist? How do I know which ones are already reserved for something? If I understand correctly, UART3 is exclusively reserved for the REPL? Are there any other reserved devices?
Beta Was this translation helpful? Give feedback.
All reactions