Increased maximum baud rate for serial connections to 500k for those of you who like to live dangerously. Fixes #4131

This commit is contained in:
Joseph Lenox 2017-09-24 12:52:31 -05:00
parent 1a2df5e491
commit 29d2159e29

View File

@ -1147,7 +1147,7 @@ PrintConfigDef::PrintConfigDef()
def->tooltip = "Speed (baud) of USB/serial port for printer connection.";
def->cli = "serial-speed=i";
def->min = 1;
def->max = 300000;
def->max = 500000;
def->enum_values.push_back("57600");
def->enum_values.push_back("115200");
def->enum_values.push_back("250000");