フレームワークに導入する SDK を受け取りました。SDK は、オシロスコープとのインターフェイスに使用され、製造元から提供されます。「ドキュメント」を読みましたが、完全に欠けています。
例:
DLL_API WORD WINAPI sdSetVoltageAndCoupling(
WORD DeviceIndex,
WORD Ch1Voltage
WORD Ch2Voltage,
WORD Ch1_ACDC,
WORD Ch2_ACDC,
WORD TriggerSource)
Variables introduction:
DeviceIndex: index of the device.
Ch1Voltage: index of the CH1 voltage
Ch2Voltage: Index of the CH2 voltage
Ch1_ACDC: index of the CH1 Coupling ( AC is 1, DC is 0, GND is 0 )
Ch2_ACDC: index of the CH2 Coupling
TriggerSource: index of the trigger source (CH1 trigger is 0, CH2 trigger is 1, ALT trigger is 2, EXT trigger is 3)
Note:
This function is used for setting voltage and Coupling. If successful return 1, else return 0.
ドキュメントのどこにも、どのインデックスがどの電圧であるかは記載されておらず、全体的にはまったく情報がありません。
使用する必要がある SDK をどのように処理しますか? たとえば、ソース コードの例では、すべての興味深い内容がソリューションによって参照されるファイルにありますが、ファイル自体はどこにも見つかりません。