mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 01:15:52 +08:00
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:
parent
1a2df5e491
commit
29d2159e29
@ -1147,7 +1147,7 @@ PrintConfigDef::PrintConfigDef()
|
|||||||
def->tooltip = "Speed (baud) of USB/serial port for printer connection.";
|
def->tooltip = "Speed (baud) of USB/serial port for printer connection.";
|
||||||
def->cli = "serial-speed=i";
|
def->cli = "serial-speed=i";
|
||||||
def->min = 1;
|
def->min = 1;
|
||||||
def->max = 300000;
|
def->max = 500000;
|
||||||
def->enum_values.push_back("57600");
|
def->enum_values.push_back("57600");
|
||||||
def->enum_values.push_back("115200");
|
def->enum_values.push_back("115200");
|
||||||
def->enum_values.push_back("250000");
|
def->enum_values.push_back("250000");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user