mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 17:27:52 -06:00
Prevent double connection check
This commit is contained in:
parent
3cbc35143b
commit
25a358cd20
1 changed files with 11 additions and 10 deletions
|
@ -313,17 +313,18 @@ sub connect {
|
||||||
$self->{serial_speed_combobox}->GetValue,
|
$self->{serial_speed_combobox}->GetValue,
|
||||||
);
|
);
|
||||||
if (!$res) {
|
if (!$res) {
|
||||||
$self->set_status("Connection failed");
|
|
||||||
}
|
|
||||||
if ($self->sender->wait_connected) {
|
|
||||||
$self->set_status("Printer is online. You can now start printing from the queue on the right.");
|
|
||||||
$self->status_timer->Start(STATUS_TIMER_INTERVAL, wxTIMER_CONTINUOUS);
|
|
||||||
$self->temp_timer->Start(TEMP_TIMER_INTERVAL, wxTIMER_CONTINUOUS);
|
|
||||||
|
|
||||||
# request temperature now, without waiting for the timer
|
|
||||||
$self->sender->send("M105", 1);
|
|
||||||
} else {
|
|
||||||
$self->set_status("Connection failed. Check serial port and speed.");
|
$self->set_status("Connection failed. Check serial port and speed.");
|
||||||
|
} else {
|
||||||
|
if ($self->sender->wait_connected) {
|
||||||
|
$self->set_status("Printer is online. You can now start printing from the queue on the right.");
|
||||||
|
$self->status_timer->Start(STATUS_TIMER_INTERVAL, wxTIMER_CONTINUOUS);
|
||||||
|
$self->temp_timer->Start(TEMP_TIMER_INTERVAL, wxTIMER_CONTINUOUS);
|
||||||
|
|
||||||
|
# request temperature now, without waiting for the timer
|
||||||
|
$self->sender->send("M105", 1);
|
||||||
|
} else {
|
||||||
|
$self->set_status("Connection failed. Check serial port and speed.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$self->_update_connection_controls;
|
$self->_update_connection_controls;
|
||||||
$self->reload_jobs;
|
$self->reload_jobs;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue