Metadata-Version: 2.1
Name: sdrewire
Version: 0.0.4
Summary: Tool to control SDReWire, a modern SD card muxer.
Home-page: https://github.com/agners/python-sdrewire
Author: Stefan Agner
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Embedded Systems
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8
Requires-Dist: pyusb

# Python tools for SDReWire

This repository contains Python tools for [SDReWire](https://github.com/randomplum/sdrewire).
Currently the command line utility `sdrewirectl` is the only utility.

Check if SDReWire devices are available:
```
$ sdrewire list
Found the following devices:
Device: 101, Manufacturer: SliwaIO, Product: SDReWire v1.0, Serial: SDRW00004
Device: 104, Manufacturer: SliwaIO, Product: SDReWire v1.0, Serial: SDRW00003
```

Muxing can be controlled using:
```
$ sdrewire --serial SDRW00003 sdmux --ts
$ sdrewire --serial SDRW00003 sdmux --status
SD mux connected to: TS
$ sdrewire --serial SDRW00003 sdmux --dut
$ sdrewire --serial SDRW00003 sdmux --status
SD mux connected to: DUT
```


