use super::source::*;
use crate::config::*;
#[cfg_attr(feature = "python-bindings", pyclass)]
#[derive(Clone, Debug)]
pub enum SiggenCommand {
ChangeSource{
src: Source,
},
ResetSiggen {
fs: Flt,
},
SetAllGains {
g: Flt,
},
SetMuteChannel {
ch: usize,
mute: bool,
},
SetMuteAllChannels {
mute: bool,
},
}