Skip to content

Commit a2a36b0

Browse files
committed
add xonoff to the output:
1 parent 391d0f5 commit a2a36b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Device/Serial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ namespace Device
447447

448448
std::string SerialPort::Get()
449449
{
450-
return Device::Get() + " baudrate " + std::to_string(baudrate) + " port " + port + " print " + Util::Convert::toString(print);
450+
return Device::Get() + " baudrate " + std::to_string(baudrate) + " disable_xonxoff " + (disable_xonxoff ? "on" : "off") + " port " + port + " print " + Util::Convert::toString(print);
451451
}
452452

453453
void SerialPort::getDeviceList(std::vector<Description> &DeviceList)

0 commit comments

Comments
 (0)