The RRBV, REP, and RMP are currently limited to 32 bits:
|
field(RRBV,DBF_LONG) { |
|
prompt("Raw Readback Value") |
|
special(SPC_NOMOD) |
|
} |
|
field(RMP,DBF_LONG) { |
|
prompt("Raw Motor Position") |
|
special(SPC_NOMOD) |
|
} |
|
field(REP,DBF_LONG) { |
|
prompt("Raw Encoder Position") |
|
special(SPC_NOMOD) |
|
} |
Changing the fields from DBF_LONG to DBF_INT64 will break compability with EPICS base 3.15. Higher-resolution encoders are going to be increasingly common.
The
RRBV,REP, andRMPare currently limited to 32 bits:motor/motorApp/MotorSrc/motorRecord.dbd
Lines 578 to 589 in 302d4d6
Changing the fields from
DBF_LONGtoDBF_INT64will break compability with EPICS base 3.15. Higher-resolution encoders are going to be increasingly common.