added getter fuctions to modecommand #35

Merged
lkoester merged 2 commits from mode_quick_fix into main 2023-02-16 16:37:29 +01:00
Showing only changes of commit 8a025c84b1 - Show all commits

View File

@ -59,11 +59,11 @@ impl ModeCommand {
self.mode_submode
}
pub fn get_mode(&self) -> u32 {
pub fn mode(&self) -> u32 {
self.mode_submode.mode
}
pub fn get_submode(&self) -> u16 {
pub fn submode(&self) -> u16 {
self.mode_submode.submode
}
}