Hi,
I would like to have a baudrate >115200 kbit/s on one of the available uart devices (mainly uart3). Is there a way to have this baudrate while developing with the psp package?
It seems to me that the baudrate is limited by psp package to 115200 kbit/s by the following enumeration type:
typedef
enum Uart_BaudRate {
Uart_BaudRate_2_4K,
Uart_BaudRate_4_8K,
Uart_BaudRate_9_6K,
Uart_BaudRate_19_2K,
Uart_BaudRate_38_4K,
Uart_BaudRate_57_6K,
Uart_BaudRate_115_2K
} Uart_BaudRate;
that has to be used during uart configuration inside the project configuration file. e.g.: uartPrms.baudRate = Uart.BaudRate_115_2K;
Thanks
Andrej