Changes between Version 1 and Version 2 of epics/streamdevice/waveform1
- Timestamp:
- 02/20/13 11:55:46 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
epics/streamdevice/waveform1
v1 v2 21 21 } 22 22 getDATA { 23 Separator = ","; 24 out "CURV?"; 25 in "%d"; 23 Separator = ","; # データ区切りとしてコンマを使用 24 out "CURV?"; # CURV? コマンドを送る 25 in "%d"; # integer データを入力。waveformレコードから呼ばれたときには%d変換が繰り返される。 26 26 } 27 27 }}} 28 28 29 database file (stream.db) 29 database file (stream.db) NELM, FTVLを正しく設定しておく。 30 機器が返してくる配列数が不定の場合はNELMを大き目にとっておいて、プロセスした後でNORDをみてデータ数を判別する。 30 31 {{{ 31 32 record(waveform, "obina:data_ch1") … … 34 35 field(DTYP, "stream") 35 36 field(SCAN, "Passive") 36 field(INP, "@s tream.proto getDATA PS1")37 field(INP, "@sample.proto getDATA PS1") 37 38 field(NELM, "10000") 38 39 field(FTVL, "LONG") … … 40 41 }}} 41 42 43 44 45