summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-08-05 16:23:12 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-08-05 16:24:40 +0200
commit2cc3392706bdf15455755549468a741a56217d60 (patch)
tree73c503822566411a021442d1eb342233676d950d /src
parent94b1dce6d1580ecd842ca2c24257009b0d9ab051 (diff)
trx_toolkit: Fixes in TRXD documentation
Diffstat (limited to 'src')
-rw-r--r--src/target/trx_toolkit/data_msg.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/target/trx_toolkit/data_msg.py b/src/target/trx_toolkit/data_msg.py
index ebb7a0fc..de5f9089 100644
--- a/src/target/trx_toolkit/data_msg.py
+++ b/src/target/trx_toolkit/data_msg.py
@@ -477,17 +477,17 @@ class DATAMSG_TRX2L1(DATAMSG):
+-----------------+---------------------------------------+
| 7 6 5 4 3 2 1 0 | bit numbers (value range) |
+-----------------+---------------------------------------+
- | . . . . . X X X | Training Sequence Code (0..7) |
+ | X . . . . . . . | IDLE / nope frame indication (0 or 1) |
+-----------------+---------------------------------------+
| . X X X X . . . | Modulation, TS set number (see below) |
+-----------------+---------------------------------------+
- | X . . . . . . . | IDLE / nope frame indication (0 or 1) |
+ | . . . . . X X X | Training Sequence Code (0..7) |
+-----------------+---------------------------------------+
The bit number 7 (MSB) is set to high when either nothing has been
detected, or during IDLE frames, so we can deliver noise levels,
and avoid clock gaps on the L1 side. Other bits are ignored,
- and should be set to low (0) in this case. L16 shall be set to 0x00.
+ and should be set to low (0) in this case.
== Coding of modulation and TS set number
@@ -520,14 +520,14 @@ class DATAMSG_TRX2L1(DATAMSG):
== Coding of the burst bits
- Unlike to be transmitted bursts, the received bursts are designated
+ Unlike the transmitted bursts, the received bursts are designated
using the soft-bits notation, so the receiver can indicate its
assurance from 0 to -127 that a given bit is 1, and from 0 to +127
that a given bit is 0. The Viterbi algorithm allows to approximate
the original sequence of hard-bits (1 or 0) using these values.
Each soft-bit (-127..127) of the burst is encoded as an unsigned
- value in range (254..0) respectively using the constant shift.
+ value in range (0..255) respectively using the constant shift.
"""