GrumpyOldPizza / arduino-STM32L4

69 stars 60 forks source link

Maximum Baud Rate #54

Open flybrianfly opened 1 year ago

flybrianfly commented 1 year ago

Am I correct, guessing from this file that the maximum supported baud rate is 921600?

kriswiner commented 1 year ago

I think this is right. Not sure how much higher you might need to go....

On Wed, Sep 13, 2023 at 6:15 PM Brian Taylor @.***> wrote:

Am I correct, guessing from this file https://github.com/GrumpyOldPizza/arduino-STM32L4/blob/ac659033eadd50cfe001ba1590a1362b2d87bb76/system/STM32L4xx/Source/stm32l4_uart.c#L657 that the maximum supported baud rate is 921600?

— Reply to this email directly, view it on GitHub https://github.com/GrumpyOldPizza/arduino-STM32L4/issues/54, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABTDLKRKWCRWAPGKOAX6SKTX2JLDNANCNFSM6AAAAAA4XJ6JW4 . You are receiving this because you are subscribed to this thread.Message ID: @.***>

GrumpyOldPizza commented 1 year ago

921600 is the limit.

May I ask why this high transfer rate ?

On Thu, Sep 14, 2023 at 9:20 AM Kris Winer @.***> wrote:

I think this is right. Not sure how much higher you might need to go....

On Wed, Sep 13, 2023 at 6:15 PM Brian Taylor @.***> wrote:

Am I correct, guessing from this file < https://github.com/GrumpyOldPizza/arduino-STM32L4/blob/ac659033eadd50cfe001ba1590a1362b2d87bb76/system/STM32L4xx/Source/stm32l4_uart.c#L657>

that the maximum supported baud rate is 921600?

— Reply to this email directly, view it on GitHub https://github.com/GrumpyOldPizza/arduino-STM32L4/issues/54, or unsubscribe < https://github.com/notifications/unsubscribe-auth/ABTDLKRKWCRWAPGKOAX6SKTX2JLDNANCNFSM6AAAAAA4XJ6JW4>

. You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/GrumpyOldPizza/arduino-STM32L4/issues/54#issuecomment-1719662108, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABXBA7FPEEKTJT3QDNYAGILX2MODBANCNFSM6AAAAAA4XJ6JW4 . You are receiving this because you are subscribed to this thread.Message ID: @.***>

flybrianfly commented 1 year ago

Transferring data between a Ladybug and an ESP32. The Ladybug is doing the heavy lifting to determine the states of a vehicle and the ESP32 is wirelessly broadcasting those states to a display - don't have a hard requirement on baudrate, just trying to minimize latency. I can work on compressing the packet size, but if I could increase the baudrate, that either provides an easier solution to reducing latency or provides options to reduce it further.