Skip to content

Commit 0fa35c5

Browse files
committed
FlightController: More helpful text and consistency
1 parent 7a5930a commit 0fa35c5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/flightcontroller.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,9 @@ class FCPage extends basePage {
201201

202202
<br />
203203
<h2>Telemetry Destinations</h2>
204+
<p><i>Telemetry must be stopped before the below options can be edited.</i></p>
204205
<h3>UDP Client</h3>
205-
<p><i>Send telemetry to these specific devices IP:port</i></p>
206+
<p><i>Send telemetry to a specific IP:port. Use "UDP" option in Mission Planner.</i></p>
206207
<Table id='UDPOut' striped bordered hover size="sm">
207208
<thead>
208209
<tr><th>Destination IP:Port</th><th>Action</th></tr>
@@ -215,12 +216,12 @@ class FCPage extends basePage {
215216
<div className="form-group row" style={{ marginBottom: '5px' }}>
216217
<label className="col-sm-4 col-form-label">Add new destination</label>
217218
<div className="col-sm-8">
218-
<input type="text" onChange={this.changeaddrow} value={this.state.addrow} /><Button size="sm" onClick={this.addUdpOutput}>Add</Button>
219+
<input type="text" onChange={this.changeaddrow} disabled={this.state.telemetryStatus} value={this.state.addrow} /><Button size="sm" disabled={this.state.telemetryStatus} onClick={this.addUdpOutput}>Add</Button>
219220
</div>
220221
</div>
221222
<br />
222223
<h3>UDP Server</h3>
223-
<p><i>Allow devices to connect to this device's IP:port</i></p>
224+
<p><i>Allow a single GCS to connect to this device's IP:port. Multiple GCS's cannot be connected here. Use "UDPCI" option in Mission Planner.</i></p>
224225
<div className="form-group row" style={{ marginBottom: '5px' }}>
225226
<label className="col-sm-4 col-form-label">Enable UDP Server</label>
226227
<div className="col-sm-8">
@@ -235,7 +236,7 @@ class FCPage extends basePage {
235236
</div>
236237
<br />
237238
<h3>TCP Server</h3>
238-
<p><i>Allow devices to connect to this device's IP:port</i></p>
239+
<p><i>Allow multiple GCS's to connect to this device's IP:port. Use "TCP" option in Mission Planner.</i></p>
239240
<div className="form-group row" style={{ marginBottom: '5px' }}>
240241
<label className="col-sm-5 col-form-label">Enable TCP Server at port 5760</label>
241242
<div className="col-sm-7">

0 commit comments

Comments
 (0)