rfe 0.1.0

Communicate with RF Explorer spectrum analyzers and signal generators over USB serial
Documentation
1
2
3
4
5
6
7
8
9
10
11
use num_enum::IntoPrimitive;

#[derive(Debug, Copy, Clone, Eq, PartialEq, IntoPrimitive)]
#[repr(u8)]
/// Wi-Fi band used by Wi-Fi analyzer mode.
pub enum WifiBand {
    /// 2.4 GHz Wi-Fi band.
    TwoPointFourGhz = 1,
    /// 5 GHz Wi-Fi band.
    FiveGhz,
}