works well
All checks were successful
EIVE/-/pipeline/pr-main This commit looks good

This commit is contained in:
2023-07-21 11:47:37 +02:00
parent 87b766dfb8
commit a82cbff5a8
2 changed files with 25 additions and 4 deletions

View File

@ -24,6 +24,19 @@ from tmtccmd.fsfw.tmtc_printer import FsfwTmTcPrinter
_LOGGER = logging.getLogger(__name__)
class SdState(enum.IntEnum):
OFF = 0
ON = 1
MOUNTED = 2
class SdCardSelect(enum.IntEnum):
SD_0 = 0
SD_1 = 1
BOTH = 2
NONE = 3
class ActionId(enum.IntEnum):
ANNOUNCE_VERSION = 1
ANNOUNCE_CURRENT_IMAGE = 2