1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Merge pull request #592 from sherlockflight/blackbox-serial-baud

Support new 230400 baud rate which allows >750Hz Blackbox logging
This commit is contained in:
Dominic Clifton 2015-03-13 23:24:57 +01:00
commit 626bd29dae
7 changed files with 63 additions and 24 deletions

View file

@ -41,7 +41,9 @@ typedef enum {
BAUD_19200,
BAUD_38400,
BAUD_57600,
BAUD_115200
BAUD_115200,
BAUD_230400,
BAUD_250000,
} baudRate_e;
extern uint32_t baudRates[];