use crate::{Error, lib_enum};
lib_enum! {
VideoSpeedClassControl: u8 {
default: StartRecording,
error: Error,
StartRecording = 0b0000,
UpdateDIR = 0b0001,
UpdateCI = 0b0100,
SuspendRecording = 0b0101,
ResumeRecording = 0b0110,
SetFreeAU = 0b0111,
ReleaseDIR = 0b1000,
}
}