Compare commits
7 Commits
e0a31cb992
...
v2.20.0
Author | SHA1 | Date | |
---|---|---|---|
e8ccb4700a | |||
1d01d27b17 | |||
c3486c26b8 | |||
63fda2f970 | |||
de4de87667 | |||
6b406b8e9a | |||
4508b5dd54 |
12
CHANGELOG.md
12
CHANGELOG.md
@ -10,14 +10,26 @@ list yields a list of all related PRs for each release.
|
|||||||
|
|
||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# [v2.20.0] 2023-03-28
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
- COM `Submode` enum moved from subsystem module to separate definitions module and renamed
|
- COM `Submode` enum moved from subsystem module to separate definitions module and renamed
|
||||||
to `Mode`. Added re-imports with the name `ComMode` in the subsystem and syrlinks module.
|
to `Mode`. Added re-imports with the name `ComMode` in the subsystem and syrlinks module.
|
||||||
|
- Convert various enums to proper `IntEnum`s
|
||||||
|
- Updates for some enumerations.
|
||||||
|
PR: https://egit.irs.uni-stuttgart.de/eive/eive-tmtc/pulls/178
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
||||||
- Eb to N0 calculation: Improve robustness against division by zero.
|
- Eb to N0 calculation: Improve robustness against division by zero.
|
||||||
|
- Some fixes for PCDU commands: Wrongfully packed command to switch devices off instead of on.
|
||||||
|
PR: https://egit.irs.uni-stuttgart.de/eive/eive-tmtc/pulls/180.
|
||||||
|
|
||||||
|
## Added
|
||||||
|
|
||||||
|
- Added `PcduSwitches` enum.
|
||||||
|
PR: https://egit.irs.uni-stuttgart.de/eive/eive-tmtc/pulls/179
|
||||||
|
|
||||||
# [v2.19.4] 2023-03-24
|
# [v2.19.4] 2023-03-24
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
__version__ = "2.19.4"
|
__version__ = "2.20.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 = 2
|
||||||
VERSION_MINOR = 19
|
VERSION_MINOR = 20
|
||||||
VERSION_REVISION = 4
|
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
|
||||||
|
@ -255,7 +255,7 @@ def mgt_off_cmd(q: DefaultPusQueueHelper):
|
|||||||
|
|
||||||
|
|
||||||
def create_mgt_off_cmd() -> PusTelecommand:
|
def create_mgt_off_cmd() -> PusTelecommand:
|
||||||
return create_generic_on_cmd(PDU_1_HANDLER_ID, Pdu1ChIndex.MGT)
|
return create_generic_off_cmd(PDU_1_HANDLER_ID, Pdu1ChIndex.MGT)
|
||||||
|
|
||||||
|
|
||||||
def sun_sensor_nominal_on_cmd(q: DefaultPusQueueHelper):
|
def sun_sensor_nominal_on_cmd(q: DefaultPusQueueHelper):
|
||||||
|
@ -284,7 +284,7 @@ def heater_off_cmd(q: DefaultPusQueueHelper):
|
|||||||
|
|
||||||
|
|
||||||
def create_heater_off_cmd() -> PusTelecommand:
|
def create_heater_off_cmd() -> PusTelecommand:
|
||||||
return create_generic_on_cmd(PDU_2_HANDLER_ID, Pdu2ChIndex.HEATER)
|
return create_generic_off_cmd(PDU_2_HANDLER_ID, Pdu2ChIndex.HEATER)
|
||||||
|
|
||||||
|
|
||||||
def sus_red_on_cmd(q: DefaultPusQueueHelper):
|
def sus_red_on_cmd(q: DefaultPusQueueHelper):
|
||||||
@ -372,4 +372,4 @@ def payload_camera_off_cmd(q: DefaultPusQueueHelper):
|
|||||||
|
|
||||||
|
|
||||||
def create_payload_camera_off_cmd() -> PusTelecommand:
|
def create_payload_camera_off_cmd() -> PusTelecommand:
|
||||||
return create_generic_on_cmd(PDU_2_HANDLER_ID, Pdu2ChIndex.PL_CAM)
|
return create_generic_off_cmd(PDU_2_HANDLER_ID, Pdu2ChIndex.PL_CAM)
|
||||||
|
Reference in New Issue
Block a user