You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serial1: PA_9 and PA10: are on USART1 on schematics LPUART
Serial2: Is on UART7 - Not on High density connector, Used for WiFi and BT
Serial3: is on UART8
So Two of the UART/USARTs are on the connector.
With the current ArduinoCore-zephyr/zephyr device tree we have serials = <&cdc_acm_uart0>,<&usart6>, <&usart1>, <&uart4>;
Serial1 is USART6:
Which is not setup as SerailX on MBED.
And on MBED UART8 is not exposed in zephyr.
Question is: Should we resolve the differences? If so how. Could for example add all of them? that either defined?
What order? Something like: USART1, UART7, USART8, USART6, UART4.
Or should UART7 go to the end as not exposed externally and not used on H7 lite.
Wish that the RX/TX buffers would be dynamic... Only allocated if the port is actually used... But that is a different subject.
The text was updated successfully, but these errors were encountered:
Simple question about how compatible should the two platforms be?
On MBED, I believe it has 3 Serial ports defined:
From pins_arduino.h we have:
Serial1: PA_9 and PA10: are on USART1 on schematics LPUART
Serial2: Is on UART7 - Not on High density connector, Used for WiFi and BT
Serial3: is on UART8
So Two of the UART/USARTs are on the connector.
With the current ArduinoCore-zephyr/zephyr device tree we have
serials = <&cdc_acm_uart0>,<&usart6>, <&usart1>, <&uart4>;
Serial1 is USART6:
Which is on the HD connector, but not exposed with MBED?
Serial2 is: USART1:
On MBED this is Serial1
And Serial3 is: UART4
Which is not setup as SerailX on MBED.
And on MBED UART8 is not exposed in zephyr.
Question is: Should we resolve the differences? If so how. Could for example add all of them? that either defined?
What order? Something like: USART1, UART7, USART8, USART6, UART4.
Or should UART7 go to the end as not exposed externally and not used on H7 lite.
Wish that the RX/TX buffers would be dynamic... Only allocated if the port is actually used... But that is a different subject.
The text was updated successfully, but these errors were encountered: