From bf31810f25e2a49c9b3a79f9917a55205356144f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 7 Mar 2023 10:03:22 +0100 Subject: [PATCH] prep v2.17.0 --- CHANGELOG.md | 3 +++ eive_tmtc/__init__.py | 6 +++--- eive_tmtc/config/object_ids.py | 4 ++++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c4992d..fcec382 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,12 @@ list yields a list of all related PRs for each release. # [unreleased] +# [v2.17.0] 2023-03-07 + ## Added - Health set and health announce commands +- Camera Switcher, Syrlinks Assembly, IMTQ assembly and Star Tracker assembly object IDs added # [v2.16.4] 2023-03-04 diff --git a/eive_tmtc/__init__.py b/eive_tmtc/__init__.py index 9184dcb..c861fc5 100644 --- a/eive_tmtc/__init__.py +++ b/eive_tmtc/__init__.py @@ -1,12 +1,12 @@ -__version__ = "2.16.4" +__version__ = "2.17.0" import logging from pathlib import Path SW_NAME = "eive-tmtc" VERSION_MAJOR = 2 -VERSION_MINOR = 16 -VERSION_REVISION = 4 +VERSION_MINOR = 17 +VERSION_REVISION = 0 EIVE_TMTC_ROOT = Path(__file__).parent PACKAGE_ROOT = EIVE_TMTC_ROOT.parent diff --git a/eive_tmtc/config/object_ids.py b/eive_tmtc/config/object_ids.py index a95f994..3b8a1ef 100644 --- a/eive_tmtc/config/object_ids.py +++ b/eive_tmtc/config/object_ids.py @@ -136,6 +136,10 @@ ACS_BOARD_ASS_ID = bytes([0x73, 0x00, 0x00, 0x01]) SUS_BOARD_ASS_ID = bytes([0x73, 0x00, 0x00, 0x02]) TCS_BOARD_ASS_ID = bytes([0x73, 0x00, 0x00, 0x03]) RW_ASSEMBLY = bytes([0x73, 0x00, 0x00, 0x04]) +CAM_SWITCHER = bytes([0x73, 0x00, 0x00, 0x06]) +SYRLINKS_ASSEMBLY = bytes([0x73, 0x00, 0x00, 0x07]) +IMTQ_ASSEMBLY = bytes([0x73, 0x00, 0x00, 0x08]) +STR_ASSEMBLY = bytes([0x73, 0x00, 0x00, 0x09]) # Controllers TCS_CONTROLLER = bytes([0x43, 0x40, 0x00, 0x01])