summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author 68bit <info@68bit.org>2020-07-02 22:57:57 +1000
committer 68bit <info@68bit.org>2020-07-03 00:03:00 +1000
commit6a1989e14d8a8827acd6ad55aecdd4a74ace95f8 (patch)
tree9f63dd77e9d189244093b22afaf657a45f4b9ba9 /src
parent3a2bf1c61bcef3384e8f2439392f7a698e68fb71 (diff)
rs232 serial printer: initialize the data output high.
High is the restful state for RS232. The low level could cause continual breaks to be received by an attached device and this could cause problems for some drives.
Diffstat (limited to 'src')
-rw-r--r--src/devices/bus/rs232/printer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/rs232/printer.cpp b/src/devices/bus/rs232/printer.cpp
index b9e13ca4ef2..18c29759131 100644
--- a/src/devices/bus/rs232/printer.cpp
+++ b/src/devices/bus/rs232/printer.cpp
@@ -52,7 +52,7 @@ WRITE_LINE_MEMBER(serial_printer_device::update_serial)
set_rcv_rate(rxbaud);
// TODO: make this configurable
- output_rxd(0);
+ output_rxd(1);
output_dcd(0);
output_dsr(0);
output_cts(0);