-
Notifications
You must be signed in to change notification settings - Fork 21
Adjusting string sizing for longer path names #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,25 +34,31 @@ record(stringout, "$(P)saveData_fileName") { | |
| field(DTYP, "Soft Channel") | ||
| } | ||
|
|
||
| record(stringout, "$(P)saveData_fileSystem") { | ||
| record(waveform, "$(P)saveData_fileSystem") { | ||
| field(DTYP, "Soft Channel") | ||
| field(NELM, "256") | ||
| field(FTVL, "CHAR") | ||
| } | ||
|
|
||
| record(stringout, "$(P)saveData_message") { | ||
| field(DTYP, "Soft Channel") | ||
| } | ||
|
|
||
| record(stringout, "$(P)saveData_subDir") { | ||
| record(waveform, "$(P)saveData_subDir") { | ||
| field(DTYP, "Soft Channel") | ||
| field(NELM, "256") | ||
| field(FTVL, "CHAR") | ||
| } | ||
|
|
||
| record(stringout, "$(P)saveData_baseName") { | ||
| record(waveform, "$(P)saveData_baseName") { | ||
| field(DTYP, "Soft Channel") | ||
| field(NELM, "256") | ||
| field(FTVL, "CHAR") | ||
| } | ||
|
|
||
| record(waveform, "$(P)saveData_fullPathName") { | ||
| field(DTYP, "Soft Channel") | ||
| field(NELM, "100") | ||
| field(NELM, "512") | ||
| field(FTVL, "CHAR") | ||
| } | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you miss this record intentionally?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That has always been a waveform, so I didn't necessarily want to change it and potentially affect functionality beyond what was asked for. But if the recommendation is to phase out waveforms, I will change it. |
||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.