Code review comment for lp:~epics-core/epics-base/link-support-2

Revision history for this message
mdavidsaver (mdavidsaver) wrote :

Should these three be equivalent initializations of INP w/ a long string? Hint, longstr2 seems to truncate.

record(lsi, "longstr1") {
  field(SIZV, "100")
  field(INP, ["!----------------------------------------------!"])
}

record(lsi, "longstr2") {
  field(SIZV, "100")
  field(INP, {const: ["!----------------------------------------------!"]})
}

record(lsi, "longstr3") {
  field(SIZV, "100")
  field(INP, {const: "!----------------------------------------------!"})
}

« Back to merge proposal