3 Commits

Author SHA1 Message Date
9958ef428b Monitor channels, change record type to int64in
Some checks failed
Example Action / Lint (push) Successful in 8s
Example Action / BuildAndTest (push) Failing after 15s
2025-11-17 09:54:34 +01:00
e91b0e54b7 make limits on 4 and 8 channel consequent
Some checks failed
Example Action / Lint (push) Successful in 4s
Example Action / BuildAndTest (push) Failing after 10m0s
2025-09-19 10:31:16 +02:00
c2b73e44cc Merge pull request 'removes duplicated clearing of channels and cleans up status mapping for nicos' (#3) from v3cleanup into master
Some checks failed
Example Action / Lint (push) Successful in 3s
Example Action / BuildAndTest (push) Failing after 9m56s
Reviewed-on: #3
2025-09-17 13:57:27 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -94,7 +94,7 @@ record(ao,"$(INSTR)$(NAME):THRESH$(CHANNEL)")
################################################################################
# Read all monitors values
record(longin, "$(INSTR)$(NAME):M$(CHANNEL)")
record(int64in, "$(INSTR)$(NAME):M$(CHANNEL)")
{
field(DESC, "DAQ CH$(CHANNEL)")
field(EGU, "cts")

View File

@@ -13,8 +13,8 @@ record(longout, "$(INSTR)$(NAME):MONITOR-CHANNEL")
{
field(DESC, "PRESET-COUNT Monitors this channel")
field(VAL, 1)
field(DRVL, "1") # Smallest Monitor Channel
field(DRVH, "1") # Largest Monitor Channel
field(DRVL, 0) # Smallest Monitor Channel (should really be 1)
field(DRVH, 1) # Largest Monitor Channel
field(DISP, 1)
}

View File

@@ -13,8 +13,8 @@ record(longout, "$(INSTR)$(NAME):MONITOR-CHANNEL")
{
field(DESC, "PRESET-COUNT Monitors this channel")
field(VAL, 1)
field(DRVL, "1") # Smallest Monitor Channel
field(DRVH, "1") # Largest Monitor Channel
field(DRVL, 0) # Smallest Monitor Channel (should really be 1)
field(DRVH, 1) # Largest Monitor Channel
field(DISP, 1)
}