From 7eaf6557ebb886861c819fda0319641855bbb650 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 17 Apr 2023 11:34:56 +0200 Subject: [PATCH 1/2] update generated event file --- CHANGELOG.md | 6 ++++++ eive_tmtc/config/events.csv | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 394fb88..50e358a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ list yields a list of all related PRs for each release. # [unreleased] +# [v3.1.1] 2023-04-17 + +## Added + +- Update generated event file. + # [v3.1.0] 2023-04-16 ## Added diff --git a/eive_tmtc/config/events.csv b/eive_tmtc/config/events.csv index 5423323..2d5f569 100644 --- a/eive_tmtc/config/events.csv +++ b/eive_tmtc/config/events.csv @@ -274,6 +274,7 @@ Event ID (dec); Event ID (hex); Name; Severity; Description; File Path 14105;0x3719;CAMERA_OVERHEATING;HIGH;No description;mission/controller/tcsDefs.h 14106;0x371a;PCDU_SYSTEM_OVERHEATING;HIGH;No description;mission/controller/tcsDefs.h 14107;0x371b;HEATER_NOT_OFF_FOR_OFF_MODE;MEDIUM;No description;mission/controller/tcsDefs.h +14108;0x371c;MGT_OVERHEATING;MEDIUM;No description;mission/controller/tcsDefs.h 14201;0x3779;TX_TIMER_EXPIRED;INFO;The transmit timer to protect the Syrlinks expired P1: The current timer value;mission/system/com/ComSubsystem.h 14202;0x377a;BIT_LOCK_TX_ON;INFO;Transmitter will be turned on due to detection of bitlock;mission/system/com/ComSubsystem.h 14300;0x37dc;POSSIBLE_FILE_CORRUPTION;LOW;P1: Result code of TM packet parser. P2: Timestamp of possibly corrupt file as a unix timestamp.;mission/persistentTmStoreDefs.h From 0c6a9677e1b9b86456efff2e11ba31f99e15ac2a Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 17 Apr 2023 11:43:43 +0200 Subject: [PATCH 2/2] bump patch revision --- eive_tmtc/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eive_tmtc/__init__.py b/eive_tmtc/__init__.py index 40d0230..fa6d179 100644 --- a/eive_tmtc/__init__.py +++ b/eive_tmtc/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.1.0" +__version__ = "3.1.1" import logging from pathlib import Path @@ -6,7 +6,7 @@ from pathlib import Path SW_NAME = "eive-tmtc" VERSION_MAJOR = 3 VERSION_MINOR = 1 -VERSION_REVISION = 0 +VERSION_REVISION = 1 EIVE_TMTC_ROOT = Path(__file__).parent PACKAGE_ROOT = EIVE_TMTC_ROOT.parent