Metadata-Version: 2.0
Name: SerialTool
Version: 0.1.5
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: http://www.apache.org/licenses/LICENSE-2.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software 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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: Proxy Servers
Requires-Dist: pySerial

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

overview
----
A small debug tool for serial port programming.

How to install
----
#sudo pip install SerialTool

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

CONTACT
----
yangtao.now@gmail.com


