:py:mod:`expliot.core.protocols.hardware.serial` ================================================ .. py:module:: expliot.core.protocols.hardware.serial .. autoapi-nested-parse:: Wrapper for the serial interface. Package Contents ---------------- Classes ~~~~~~~ .. autoapisummary:: expliot.core.protocols.hardware.serial.Serial .. py:class:: Serial Bases: :py:obj:`serial.Serial` A wrapper around pyserial's Serial class. .. py:method:: readfull(bsize=1) Read from the serial device, bsize at a time and return the complete response. Please note if timeout is not set for the Serial object, then this method will block (on read). :param bsize: Size of buffer to pass to read() method :return: bytes containing the complete response from the serial device