From 91223b9ec84a6db6b1c7521f17dc89e78d1240de Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 21 Oct 2019 20:18:33 -0400 Subject: [PATCH] Sets default level to high. --- Components/SerialPort/SerialPort.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/SerialPort/SerialPort.hpp b/Components/SerialPort/SerialPort.hpp index 29100e279..09c38fc7d 100644 --- a/Components/SerialPort/SerialPort.hpp +++ b/Components/SerialPort/SerialPort.hpp @@ -79,7 +79,7 @@ class Line { std::vector events_; int remaining_delays_ = 0; int transmission_extra_ = 0; - bool level_ = false; + bool level_ = true; int clock_rate_ = 0; ReadDelegate *read_delegate_ = nullptr;