NI製品ディスカッション

キャンセル
次の結果を表示 
次の代わりに検索 
もしかして: 

NI Labviewにオシロスコープを登録したい

NI LabVIEW2017でエラーコード-1073807343とでます。

考えられる理由: VISA: (Hex 0xBFFF0011) 位置情報が不十分か、デバイスまたはリソースがシステムに存在しません。と出てきます。どうしたらいいでしょうか?

先輩の研究から引き継いだのですが、前の先輩のだいで使えなくなったそうです。

それより以前から何か変えたということはないらしいのですが、自分にはよくわかりません。

よろしくお願いします

0 件の賞賛
メッセージ1/3
70件の閲覧回数
This error is caused by unsupported values being passed to the hardware driver by NI-VISA. Please check your serial hardware and your device's manual to ensure that the settings being passed by NI-VISA to the underlying hardware driver match both the serial bus and the hardware specifications. This includes the write commands themselves being sent to the device as it may not follow standard serial protocols. One common cause of this error is wiring an incorrect value to the stop bits input of the VISA Configure Serial Port.vi. You can configure the number of stop bits to be either 1, 1.5, or 2, and it may seem intuitive to simply wire in this number to the stop bits input. However, the input is an integer input and cannot take a value of 1.5 since this is a double. The best solution for this is to right-click on the input and create a constant. This will create an enumerated ring control that will pass the correct value to the VI for you. Another method is to input the appropriate value that represents the number of stop bits into the VI. The table below shows what value should be input for each number of stop bits you desire. Number of Stop Bits Value to Input 1 10 1.5 15 2 20 The picture below shows both methods that will work for setting the number of stop bits, along with the incorrect method of passing in a double.
CLA
0 件の賞賛
メッセージ2/3
57件の閲覧回数

エラーだけ見ると、PC上で登録されたオシロスコープの情報が正しくないように見えます。

お使いのLabVIEWアプリケーションで、接続するオシロスコープの情報を設定する箇所があれば、そこを直す必要があるかもしれません。

  1. まずNI MAXで、オシロスコープが見えることを確認してください
    NI MAX VISAテストパネル コマンド送受信
  2. 見えない場合は、接続に問題があります。USBかLAN接続か、お使いのオシロによって確認の仕方が変わります。
    例えばLAN接続であればこちら。 NI MAXでTCP/IP接続された計測器を構成するには?
  3. 見える場合、LabVIEWアプリケーションで指定している計測器名が正しいか確認します。
    例えば1番のリンクの資料では、「USB::0x2A8D...」という機器名になると思います。
Certified LabVIEW Developer
There are only two ways to tell somebody thanks: Kudos and Marked Solutions

GCentral
0 件の賞賛
メッセージ3/3
28件の閲覧回数