enum for str submodes, added default submode and renamed submode for ccsds handler class #177

Merged
muellerr merged 2 commits from kranz_str_enum into main 2023-03-27 11:33:07 +02:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 40b2973d9e - Show all commits

View File

@ -175,7 +175,8 @@ class PartitionSize:
STAR_TRACKER_FIRMWARE = 464572
class Submode:
class Submode(enum.IntEnum):
DEFAULT = 0
BOOTLOADER = 1
FIRMWARE = 2