Changes between Version 2 and Version 3 of epics/timestamp


Ignore:
Timestamp:
11/08/24 17:42:26 (2 weeks ago)
Author:
obina
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • epics/timestamp

    v2 v3  
    2525 
    2626 
     27= レコードが更新された時刻を知りたい = 
     282024/11/08追記。もともとあるIOCの中ではなく、別のIOCからレコードが更新された 
     29時刻を確認したいときは TSEL というフィールドが活用できます。 
     30以下のようなレコードをつくれば、指定したPVのタイムスタンプを 
     31文字列として取得できます。 
     32 
     33{{{ 
     34record(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 を参照。