target.TCPChannel クラス
名前空間: target
説明
target.CommunicationChannel
から機能を継承する target.TCPChannel
を使用して、TCP 通信のプロパティについて記述します。
target.TCPChannel
オブジェクトの作成には関数 target.create
を使用します。
プロパティ
IPAddress
— IP アドレス
文字ベクトル | string
TCP サーバーの IP アドレス。
属性:
GetAccess | public |
SetAccess | public |
Port
— 端子
スカラー整数
TCP ポート。
属性:
GetAccess | public |
SetAccess | public |
例
TCP 通信チャネルを使用して接続を作成
Set Up PIL Connectivity by Using Target Framework (Embedded Coder)から抜粋した以下のコードは、開発用コンピューターとターゲット ハードウェア間で接続を指定する方法を示しています。この例では、ターゲット アプリケーションが開発用コンピューター上で個別のプロセスとして実行され、localhost
を介して TCP 通信チャネルを使用します。
connection = target.create('TargetConnection'); connection.Name = 'Host Process Connection'; connection.Target = hostTarget; connection.CommunicationChannel = target.create('TCPChannel'); connection.CommunicationChannel.Name = ... 'External Process TCPCommunicationChannel'; connection.CommunicationChannel.IPAddress = 'localhost'; connection.CommunicationChannel.Port = '0';
メモ
名前と値の引数を使用して、次のコマンドで connection オブジェクトを作成できます。
connection = target.create('TargetConnection', ... 'Name', 'Host Process Connection', ... 'Target', hostTarget, ... 'CommunicationType', 'TCPChannel', ... 'IPAddress', 'localhost', ... 'Port', '0')
バージョン履歴
R2020b で導入
参考
target.create
| target.CommunicationChannel
| target.TargetConnection
トピック
- Set Up PIL Connectivity by Using Target Framework (Embedded Coder)
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)