tools/flterm.py: small clean up

This commit is contained in:
Florent Kermarrec 2015-03-25 18:44:08 +01:00
parent 94b62eff8b
commit 1a1c9b4420
1 changed files with 3 additions and 3 deletions

View File

@ -119,7 +119,7 @@ class Flterm:
def write_exact(self, data):
if isinstance(data, str):
self.serial.write(bytes(data, "latin1"))
self.serial.write(bytes(data, "utf-8"))
else:
self.serial.write(serial.to_bytes(data))
@ -129,7 +129,7 @@ class Flterm:
while retry:
self.write_exact(frame.raw)
# Get the reply from the device
reply = character(self.serial.read(1))
reply = character(self.serial.read())
if reply == sfl_ack_success:
retry = 0
elif reply == sfl_ack_crcerror:
@ -201,7 +201,7 @@ class Flterm:
def reader(self):
try:
while self.reader_alive:
c = character(self.serial.read(1))
c = character(self.serial.read())
if c == '\r':
sys.stdout.write('\n')
else: