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
/*!
# GMT DOS Actors Scope

`gmt_dos-clients_scope` acquire signals from a [transmitter](gmt_dos_clients_transceiver::Transceiver)
and display them graphically.

The communication between the transmitter and the scope is secured with a signed certificate
that must be provided by the transmitter.

## Examples

```
let transmitter_address = "127.0.0.1:5001";
let scope_address = "127.0.0.1:5000";
Scope::new(transmitter_address,scope_address)
    .signal::<S1>(1e-3).unwrap()
    .signal::<S2>(1e-1).unwrap()
    .show();
```

*/

mod scope;
pub use scope::{Scope, ScopeError};

pub use gmt_dos_clients_scope_macros::scope;