doc Q:form

This commit is contained in:
Michael Davidsaver
2019-01-15 19:13:30 -08:00
parent f3d7d7cd8f
commit 67b384bb6c
2 changed files with 30 additions and 0 deletions

View File

@ -141,6 +141,27 @@ record(ai, "...") {
}
@endcode
@subsection qsrv_form QSRV Display Form Option
The value of the OPI display form hint ('display.form') can be set set with the "Q:form" info() tag.
This hint, along with 'display.precision', is used by some OPI clients to control how values are rendered.
The text value of the tag must be one of the following choices.
@li Default
@li String
@li Binary
@li Decimal
@li Hex
@li Exponential
@li Engineering
@code
record(ai, "...") {
info(Q:form, "Default") # implied default
}
@endcode
@subsection qsrv_link PVAccess Links
When built against Base >= 3.16.1, support is enabled for PVAccess links,

View File

@ -2,6 +2,15 @@
@page release_notes Release Notes
Release 1.2.0 (UNRELEASED)
==========================
- Incompatible changes
- The field 'display.format' is replaced with 'display.form' and 'display.precision'.
https://github.com/epics-base/pva2pva/issues/19
- Additions
- Use @code info(Q:form, "...") @endcode to set 'display.form'. See @ref qsrv_form
Release 1.1.0 (Nov 2018)
==========================