We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It can be interesting for macros standard to add standard macro: Ex: For the ao for now we have
record(ao, "record_name") { field(DESC, "description") field(PREC, "3") field(EGU, "Volts") field(DRVL, "-10") field(DRVH, "+10") field(VAL, "0.000") }
we could have :
record(ao, "record_name") { field(DESC, "description") field(PREC, "$(PREC=3)") field(EGU, "$(EGU=Volts)") field(DRVL, "$(DRVL=-10)") field(DRVH, "$(DRVH=+10)") field(VAL, "$(VAL=0)") }
Note that following macro could also work. The record can be used directly but less an example than the previous proposition field(DRVH, "$(DRVH=")
field(DRVH, "$(DRVH=")
(can work for other records)
The text was updated successfully, but these errors were encountered:
vnadot
No branches or pull requests
It can be interesting for macros standard to add standard macro:
Ex:
For the ao for now we have
we could have :
Note that following macro could also work. The record can be used directly but less an example than the previous proposition
field(DRVH, "$(DRVH=")
(can work for other records)
The text was updated successfully, but these errors were encountered: