add RTD ID and SetId enum
This commit is contained in:
parent
d520a0e2f2
commit
ca5b2238bc
10
CHANGELOG.md
10
CHANGELOG.md
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user