diff options
| author | Yuval Adam <_@yuv.al> | 2018-07-23 20:26:33 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-07-23 20:26:33 +0300 |
| commit | f8eab2708f229d3187a0329983df7536c7bc0e01 (patch) | |
| tree | 061c032e4fb791fd9b4e2448c7f1290ca0821f9b | |
| parent | 52162d8efa5a646c16f42cb6718ff96bd80a08ad (diff) | |
Rename project
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | README.md | 28 |
2 files changed, 26 insertions, 4 deletions
@@ -1,5 +1,5 @@ [package] -name = "rustl" +name = "rustl-sdr" version = "0.1.0" authors = ["Yuval Adam <_@yuv.al>"] @@ -1,8 +1,30 @@ -# RusTL +# RusTL-SDR -A pure Rust implementation of the [RTL-SDR](https://github.com/osmocom/rtl-sdr/) driver. +A pure Rust implementation of the [RTL-SDR](https://github.com/osmocom/rtl-sdr/) driver, for shits and giggles. -This is mostly an exercise in writing low-level driver code and is unlikely to ever become seriously useful. +This is mostly an exercise in writing low-level driver code. + +Unusable, and highly unlikely to ever become usable. But it's fun. + +## Usage + +Install the crate in your `Cargo.toml`: + +```toml +[dependencies] +rustl-sdr = "0.1" +``` + +Use in your code: + +```rust +extern crate rustl_sdr; + +fn foo() { + rtlsdr = rustl_sdr::RtlSdr::new(); + rtlsdr.do_stuff() +} +``` ## Dev |
