Metadata-Version: 2.0
Name: SerialTool
Version: 0.0.4
Summary: A tool for serial port debug usage
Home-page: https://github.com/logself1988/SerialTool
Author: Tao Yang
Author-email: yangtao.now@gmail.com
License: MIT
Keywords: serial port programming debug tools
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: pyserial

SerialTool Project 
=======================

overview
----
This is a small development tools for debugging the serial port programming.

usage
----
SerailTool com baudrate databits parity stopbits [tx data types] [rx data types]
    com: the serial port device name
    baudrate: any standard baudrate, such as 9600, 115200, etc.
    databits: 5,6,7,8
    parity: N,E
    stopbits: 1,1.5,2 
    tx data types: string or hex, default is string if this parameter is null.
    rx data types: string or hex, default is string if this parameter is null.

simple usage examples
----
#SerialTool /dev/ttyUSB0 115200 8 N 1


