The information in this page is OBSOLETE. Please, try the new website
| |
| Copyright 2001 Isaac Barona ibarona@tid.es |
| Contents |
| Introduction |
|
| Motivation |
Some months ago, I discovered Python and inmediatelly liked it a lot. I started playing with it and saw that I could use it to make prototypes of comunication protocols between computer and microcontrollers really fast and easily than using C. At the same time, I was interested in working over different platforms. I started looking for Python modules to access serial port and I found the following projects: but they were not multi-platform, were just a wrap of propietary libraries or were just simple examples of serial port access. For these reasons and also for learning more Python, I decided to start this project. Of course, I have used all this projects as reference to my module and so, I want to thanks the authors for their excellent work and for allowing us to study the code. I hope you enjoy using the uspp module as much as I am enjoying doing it. |
| Features |
This module has the following features: |
| Prerequisites |
You need the following to use the library: |
| Usage and documentation |
You only have to import in your program the uspp module and automatically it loads the correct classes for the platform in which you are running the program. |
| Where does it works |
The library has been tested in a Windows 95 machine with Python 2.0 and in a Linux (2.0.34 kernel) machine with Python 1.5.2 and Python 2.0.1. |
| Porting to other platforms |
If you want to port the library to other platforms you only have to follow these steps: |
| License |
This code is released under the "GPL" that can be found in http://www.gnu.org/copyleft/gpl.html or in the GPL.txt file that is with the library. |
| Author |
This library has been created by Isaac Barona Martínez (ibarona@tid.es) |
| Versions |
Files:Known problemsIn Linux, I get the following error when the inWaiting method is called:>>> tty.inWaiting() Traceback (most recent call last): File " I have used this ioctl call in previous C programs and it has worked ok. Please, help!!!!! If you like to submit a bug report, or a feature request, send me a mail to ibarona@tid.es. To-do listThis is the to-do list:
|
| Copyright 2001 Isaac Barona |