We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
It is possible to define baudrate for logging but flush delay is defined for fixed 115200 baudrate.
/** Time to flush Usart buffer in ms (buffer is 512 bytes, * so ~45ms to flush full buffer). */ #define FLUSH_DELAY_MS 45
Could it be possible to define the flush delay so that it is calculated based on defined baudrate? Something like this:
#define FLUSH_DELAY_MS (45 * 115200.0 / DEBUG_LOG_UART_BAUDRATE)
-timo-
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
It is possible to define baudrate for logging but flush delay is defined for fixed 115200 baudrate.
Could it be possible to define the flush delay so that it is calculated based on defined baudrate?
Something like this:
#define FLUSH_DELAY_MS (45 * 115200.0 / DEBUG_LOG_UART_BAUDRATE)
-timo-
The text was updated successfully, but these errors were encountered: