Python based SDS I/O Server for PC.
It captures SDS recorder data sent from the target via one of the supported interfaces and writes recordings to files on the host.
Sensor data is recorded to files <sensor_name>.<index>.sds
:
<steam_name>
is the name of the I/O stream specified with the functionsdsRecOpen
on the target.<index>
is the zero-based index which is incremented for each subsequent recording.
-
socket SDS recorder data is sent from the target via TCP socket. Works together with the matching implementation on the target (sdsio_socket.c).
-
serial SDS recorder data is sent from the target via serial port. Works together with the matching implementation on the target (sdsio_vcom.c).
- Python 3.9 or later with packages:
- ifaddr
- pyserial
- Open terminal in SDSIO-Server root folder
- Check installed Python version with:
python --version
- (Optional) Use Python environment
- Create Python environment:
python -m venv <env_name>
Note: Usually
env
is used for<env_name>
- Activate created Python environment:
<env_name>/Scripts/activate
- Install required Python packages using requirements.txt:
pip install -r requirements.txt
- Create Python environment:
- Install required Python packages:
pip install ifaddr pyserial
Print help (common) with:
python sdsio-server.py --help
usage: sdsio-server.py [-h] {socket,serial} ...
SDS I/O server
positional arguments:
{socket,serial}
options:
-h, --help show this help message and exit
Print help (socket) with:
python sdsio-server.py socket --help
usage: sdsio-server.py socket [-h] [--ipaddr <IP> | --interface <Interface>] [--port <TCP Port>]
[--outdir <Output dir>]
options:
-h, --help show this help message and exit
optional:
--ipaddr <IP> Server IP address (not allowed with argument --interface)
--interface <Interface> Network interface (not allowed with argument --ipaddr)
--port <TCP Port> TCP port (default: 5050)
--outdir <Output dir> Output directory
Print help (serial) with:
python sdsio-server.py serial --help
usage: sdsio-server.py serial [-h] -p <Serial Port> [--baudrate <Baudrate>] [--parity <Parity>] [--stopbits <Stop bits>] [--outdir <Output dir>]
options:
-h, --help show this help message and exit
required:
-p <Serial Port> Serial port
optional:
--baudrate <Baudrate> Baudrate (default: 115200)
--parity <Parity> Parity: N = None, E = Even, O = Odd, M = Mark, S = Space (default: N)
--stopbits <Stop bits> Stop bits: 1, 1.5, 2 (default: 1)
--outdir <Output dir> Output directory
- Socket:
python sdsio-server.py socket --interface eth0 --outdir ./out_dir
- Serial:
python sdsio-server.py serial -p COM0 --baudrate 115200 --outdir ./out_dir
Note: The server is stopped by Ctrl + C