From 29d2159e29bad4ee372a2e5ba9be4a39ef8456ad Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 24 Sep 2017 12:52:31 -0500 Subject: [PATCH] Increased maximum baud rate for serial connections to 500k for those of you who like to live dangerously. Fixes #4131 --- xs/src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 538267288..565f4ced9 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -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");