Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nbuchwitz/test-serial
Simple tool to test serial connection between two devices (eg. can be used in end of line testing of a DUT)
https://github.com/nbuchwitz/test-serial
embedded-systems end-of-line-testing
Last synced: 17 days ago
JSON representation
Simple tool to test serial connection between two devices (eg. can be used in end of line testing of a DUT)
- Host: GitHub
- URL: https://github.com/nbuchwitz/test-serial
- Owner: nbuchwitz
- License: mit
- Created: 2024-09-09T13:11:52.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T09:49:39.000Z (about 2 months ago)
- Last Synced: 2024-11-08T10:38:39.867Z (about 2 months ago)
- Topics: embedded-systems, end-of-line-testing
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Serial Device Test
This repository provides a tool `test-serial.py`, which can be used to test the serial connection between two devices. It can be used in plain serial or RS485 mode.
## Install Dependencies
```
sudo apt install python3-serial
```## Usage
```
usage: test-serial.py [-h] -d DEVICE [-b BAUD] [--rs485] [--response-timeout RESPONSE_TIMEOUT] {server,client}positional arguments:
{server,client}options:
-h, --help show this help message and exit
-d DEVICE, --device DEVICE
-b BAUD, --baud BAUD Baudrate for interface
--rs485 Use interface in RS485 mode
--response-timeout RESPONSE_TIMEOUT
```