add RTD ID and SetId enum

This commit is contained in:
Robin Müller 2023-03-13 10:35:33 +01:00
parent d520a0e2f2
commit ca5b2238bc
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 29 additions and 0 deletions

View File

@ -10,6 +10,16 @@ list yields a list of all related PRs for each release.
# [unreleased]
# [v2.18.2] 2023-03-13
## Added
- Added RTD ID enum and Set ID enumeration in the RTD module.
## Fixed
- Import error for STR code
# [v2.18.1] 2023-03-11
## Fixed

View File

@ -37,6 +37,25 @@ class CommandId:
WRITE_CONFIG = 6
class RtdId(enum.IntEnum):
RTD_0_PLOC_HSPC = 0
RTD_1_PLOC_MISSIONBRD = 1
RTD_2_4K_CAM = 2
RTD_3_DAC_HSPD = 3
RTD_4_STR = 4
RTD_5_RW1_MX_MY = 5
RTD_6_DRO = 6
RTD_7_SCEX = 7
RTD_8_X8 = 8
RTD_9_HPA = 9
RTD_10_PL_TX = 10
RTD_11_MPA = 11
RTD_12_ACU = 12
RTD_13_PLPCDU_HSPD = 13
RTD_14_TCS_BRD = 14
RTD_15_IMTQ = 15
class SetId(enum.IntEnum):
TEMPERATURE = 1