Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jam1garner/saleae-importer

A library for reading and writing Saleae Logic 2 binary capture data
https://github.com/jam1garner/saleae-importer

Last synced: 4 days ago
JSON representation

A library for reading and writing Saleae Logic 2 binary capture data

Awesome Lists containing this project

README

        

# saleae-importer

A library for reading and writing Saleae Logic 2 binary capture data

### Example

```rust
use saleae_importer::SaleaeExport;

let data = SaleaeExport::open("digital_0.bin").unwrap();

for (is_high, time_len) in data.assume_digital().iter_samples() {
println!("bit state: {is_high} | time: {time_len}");
}
```