Changes between Version 4 and Version 5 of epics/transferArray


Ignore:
Timestamp:
07/01/14 10:33:46 (10 years ago)
Author:
hig-iitk
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • epics/transferArray

    v4 v5  
    4444上記.dbファイルでhig-iitk:taをプロセスした場合の動作イメージ [[BR]] 
    4545[[Image(ta-image01.png)]] 
     46 
     47== make方法 == 
     48 * makeBaseApp.plで作成された<TOP>/''yourIocApp''/src/Makefileを編集する。 
     49{{{ 
     50#---------------------------------------- 
     51#  ADD MACRO DEFINITIONS AFTER THIS LINE 
     52#============================= 
     53DBDINC += transferArrayRecord              ←追加 
     54 
     55<中略> 
     56 
     57# yourIoc.dbd will be made up from these files: 
     58yourIoc_DBD += base.dbd 
     59yourIoc_DBD += transferArrayRecord.dbd     ←追加 
     60yourIoc_DBD += devTransferArrayRecord.dbd  ←追加 
     61 
     62<中略> 
     63 
     64# yourIoc_registerRecordDeviceDriver.cpp derives from yourIoc.dbd 
     65yourIoc_SRCS += transferArrayRecord.c      ←追加 
     66yourIoc_SRCS += devTransferArrayRecord.c   ←追加 
     67yourIoc_SRCS += yourIoc_registerRecordDeviceDriver.cpp 
     68}}} 
     69 * <TOP>ディレクトリでmakeを実行する。