2021-02-01 05:40:03 -05:00
|
|
|
# Copyright 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2021-05-14 05:20:38 -04:00
|
|
|
import queue
|
2021-02-01 05:40:03 -05:00
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
import serial
|
|
|
|
|
2021-05-14 05:20:38 -04:00
|
|
|
from .constants import CHECK_ALIVE_FLAG_TIMEOUT, MINIMAL_EN_LOW_DELAY, RECONNECT_DELAY, TAG_SERIAL
|
2021-02-01 05:40:03 -05:00
|
|
|
from .output_helpers import red_print, yellow_print
|
|
|
|
from .stoppable_thread import StoppableThread
|
|
|
|
|
|
|
|
|
|
|
|
class SerialReader(StoppableThread):
|
|
|
|
""" Read serial data from the serial port and push to the
|
|
|
|
event queue, until stopped.
|
|
|
|
"""
|
|
|
|
def __init__(self, serial_instance, event_queue):
|
|
|
|
# type: (serial.Serial, queue.Queue) -> None
|
|
|
|
super(SerialReader, self).__init__()
|
|
|
|
self.baud = serial_instance.baudrate
|
|
|
|
self.serial = serial_instance
|
|
|
|
self.event_queue = event_queue
|
2021-04-16 06:59:50 -04:00
|
|
|
self.gdb_exit = False
|
2021-02-01 05:40:03 -05:00
|
|
|
if not hasattr(self.serial, 'cancel_read'):
|
|
|
|
# enable timeout for checking alive flag,
|
|
|
|
# if cancel_read not available
|
2021-05-14 05:20:38 -04:00
|
|
|
self.serial.timeout = CHECK_ALIVE_FLAG_TIMEOUT
|
2021-02-01 05:40:03 -05:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
# type: () -> None
|
|
|
|
if not self.serial.is_open:
|
|
|
|
self.serial.baudrate = self.baud
|
2021-04-16 06:59:50 -04:00
|
|
|
# We can come to this thread at startup or from external application line GDB.
|
|
|
|
# If we come from GDB we would like to continue to run without reset.
|
|
|
|
|
2021-05-14 05:20:38 -04:00
|
|
|
high = False
|
|
|
|
low = True
|
|
|
|
|
|
|
|
self.serial.dtr = low # Non reset state
|
|
|
|
self.serial.rts = high # IO0=HIGH
|
2021-07-19 08:56:43 -04:00
|
|
|
self.serial.dtr = self.serial.dtr # usbser.sys workaround
|
2021-04-16 06:59:50 -04:00
|
|
|
# Current state not reset the target!
|
2021-02-01 05:40:03 -05:00
|
|
|
self.serial.open()
|
2021-07-19 08:56:43 -04:00
|
|
|
if not self.gdb_exit:
|
2021-05-14 05:20:38 -04:00
|
|
|
self.serial.dtr = high # Set dtr to reset state (affected by rts)
|
|
|
|
self.serial.rts = low # Set rts/dtr to the reset state
|
2021-07-19 08:56:43 -04:00
|
|
|
self.serial.dtr = self.serial.dtr # usbser.sys workaround
|
2021-05-14 05:20:38 -04:00
|
|
|
|
|
|
|
# Add a delay to meet the requirements of minimal EN low time (2ms for ESP32-C3)
|
|
|
|
time.sleep(MINIMAL_EN_LOW_DELAY)
|
2021-07-16 16:37:54 -04:00
|
|
|
self.gdb_exit = False
|
2021-05-14 05:20:38 -04:00
|
|
|
self.serial.rts = high # Set rts/dtr to the working state
|
2021-04-16 06:59:50 -04:00
|
|
|
self.serial.dtr = self.serial.dtr # usbser.sys workaround
|
2021-02-01 05:40:03 -05:00
|
|
|
try:
|
|
|
|
while self.alive:
|
|
|
|
try:
|
|
|
|
data = self.serial.read(self.serial.in_waiting or 1)
|
|
|
|
except (serial.serialutil.SerialException, IOError) as e:
|
|
|
|
data = b''
|
|
|
|
# self.serial.open() was successful before, therefore, this is an issue related to
|
2021-05-14 05:20:38 -04:00
|
|
|
# the disappearance of the device
|
2021-02-01 05:40:03 -05:00
|
|
|
red_print(e)
|
|
|
|
yellow_print('Waiting for the device to reconnect', newline='')
|
|
|
|
self.serial.close()
|
|
|
|
while self.alive: # so that exiting monitor works while waiting
|
|
|
|
try:
|
2021-05-14 05:20:38 -04:00
|
|
|
time.sleep(RECONNECT_DELAY)
|
2021-02-01 05:40:03 -05:00
|
|
|
self.serial.open()
|
|
|
|
break # device connected
|
|
|
|
except serial.serialutil.SerialException:
|
|
|
|
yellow_print('.', newline='')
|
|
|
|
sys.stderr.flush()
|
|
|
|
yellow_print('') # go to new line
|
|
|
|
if data:
|
|
|
|
self.event_queue.put((TAG_SERIAL, data), False)
|
|
|
|
finally:
|
|
|
|
self.serial.close()
|
|
|
|
|
|
|
|
def _cancel(self):
|
|
|
|
# type: () -> None
|
|
|
|
if hasattr(self.serial, 'cancel_read'):
|
|
|
|
try:
|
|
|
|
self.serial.cancel_read()
|
|
|
|
except Exception: # noqa
|
|
|
|
pass
|