v3.0.0
This commit is contained in:
parent
a07f21329a
commit
d00e4247f6
@ -10,6 +10,8 @@ list yields a list of all related PRs for each release.
|
||||
|
||||
# [unreleased]
|
||||
|
||||
# [v3.0.0] 2023-04-14
|
||||
|
||||
## Fixed
|
||||
|
||||
- Bugfix for STR solution set format.
|
||||
|
@ -1,12 +1,12 @@
|
||||
__version__ = "2.22.1"
|
||||
__version__ = "3.0.0"
|
||||
|
||||
import logging
|
||||
from pathlib import Path
|
||||
|
||||
SW_NAME = "eive-tmtc"
|
||||
VERSION_MAJOR = 2
|
||||
VERSION_MINOR = 22
|
||||
VERSION_REVISION = 1
|
||||
VERSION_MAJOR = 3
|
||||
VERSION_MINOR = 0
|
||||
VERSION_REVISION = 0
|
||||
|
||||
EIVE_TMTC_ROOT = Path(__file__).parent
|
||||
PACKAGE_ROOT = EIVE_TMTC_ROOT.parent
|
||||
|
@ -1051,7 +1051,9 @@ def handle_ctrl_val_data(pw: PrintWrapper, hk_data: bytes):
|
||||
pw.dlog("Received HK set too small")
|
||||
return
|
||||
current_idx = 0
|
||||
strat = struct.unpack(fmt_strat, hk_data[current_idx : current_idx + inc_len_strat])[0]
|
||||
strat = struct.unpack(
|
||||
fmt_strat, hk_data[current_idx : current_idx + inc_len_strat]
|
||||
)[0]
|
||||
current_idx += inc_len_strat
|
||||
tgt_quat = [
|
||||
f"{val:8.3f}"
|
||||
|
Loading…
Reference in New Issue
Block a user