send data over multiple packets

This commit is contained in:
Lewis Moten
2024-05-07 22:59:51 -04:00
parent 6bddb95f6e
commit bc26da11f3
2 changed files with 277 additions and 89 deletions

View File

@@ -19,6 +19,23 @@
<button id="send-button">Send</button><br />
<textarea id="sent-data" rows="10" cols="40"></textarea><br />
</div>
<div>
<h2>Data</h2>
Data Bytes: <span id="data-byte-count"></span><br>
Data Bits: <span id="data-bit-count"></span><br>
Bits per Packet: <span id="packet-bit-count"></span><br>
Data Bits per Packet: <span id="packet-data-bit-count"></span><br>
Error Correction: <span id="packet-error-correction"></span><br>
Error Blocks per packet: <span id="packet-error-block-count"></span><br>
Unused bits per packet: <span id="packet-unused-bit-count"></span><br>
Unused bits in last packet: <span id="last-packet-unused-bit-count"></span><br>
Last segment unused channels in packet: <span id="last-segment-unused-channel-count"></span><br>
Packet Count: <span id="packet-count"></span><br>
Segments Per Packet: <span id="segments-per-packet"></span><br>
Segment Duration: <span id="segment-transfer-duration"></span><br>
Packet Duration: <span id="packet-transfer-duration"></span><br>
Total Duration: <span id="data-transfer-duration"></span><br>
</div>
<div>
<h2>Encoded</h2>
<textarea id="encoded-data" rows="10" cols="40"></textarea><br />