blob: 621fa5a09f134be637d2c468d393a6c37afd8901 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# RusTL-SDR
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.
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
The usual:
```bash
$ cargo build
$ cargo test
```
## License
[GPLv3](LICENSE)
|