//! Available baud rates for the NCP (Network Co-Processor).
use FlowControl;
/// Baud rate for hardware flow control using RST/CTS.
const RST_CTS: u32 = 115_200;
/// Baud rate for software flow control using XON/XOFF.
const XON_XOFF: u32 = 57_600;
/// Available baud rates that the NCP can operate on.