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]
|
# [unreleased]
|
||||||
|
|
||||||
|
# [v3.0.0] 2023-04-14
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
||||||
- Bugfix for STR solution set format.
|
- Bugfix for STR solution set format.
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
__version__ = "2.22.1"
|
__version__ = "3.0.0"
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
SW_NAME = "eive-tmtc"
|
SW_NAME = "eive-tmtc"
|
||||||
VERSION_MAJOR = 2
|
VERSION_MAJOR = 3
|
||||||
VERSION_MINOR = 22
|
VERSION_MINOR = 0
|
||||||
VERSION_REVISION = 1
|
VERSION_REVISION = 0
|
||||||
|
|
||||||
EIVE_TMTC_ROOT = Path(__file__).parent
|
EIVE_TMTC_ROOT = Path(__file__).parent
|
||||||
PACKAGE_ROOT = EIVE_TMTC_ROOT.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")
|
pw.dlog("Received HK set too small")
|
||||||
return
|
return
|
||||||
current_idx = 0
|
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
|
current_idx += inc_len_strat
|
||||||
tgt_quat = [
|
tgt_quat = [
|
||||||
f"{val:8.3f}"
|
f"{val:8.3f}"
|
||||||
|
Loading…
Reference in New Issue
Block a user