Changes between Version 2 and Version 3 of epics/timestamp
- Timestamp:
- 11/08/24 17:42:26 (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
epics/timestamp
v2 v3 25 25 26 26 27 = レコードが更新された時刻を知りたい = 28 2024/11/08追記。もともとあるIOCの中ではなく、別のIOCからレコードが更新された 29 時刻を確認したいときは TSEL というフィールドが活用できます。 30 以下のようなレコードをつくれば、指定したPVのタイムスタンプを 31 文字列として取得できます。 32 33 {{{ 34 record(stringin, "${user}:ts") { 35 field(TSEL, "${target_pv_name}.TIME CP") 36 field(INP, "@%Y-%m-%d %H:%M:%S.%03f") 37 } 38 }}} 39 40 詳細は https://epics-base.github.io/epics-base/dbCommonRecord.html の"Miscellaneous Fields" → TSEL を参照。