Change in osmocom-bb[master]: trx_toolkit: define TRXDv0/v1 PDUs using declarative codec

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Mon Apr 12 13:08:53 UTC 2021


laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/23137 )

Change subject: trx_toolkit: define TRXDv0/v1 PDUs using declarative codec
......................................................................

trx_toolkit: define TRXDv0/v1 PDUs using declarative codec

Change-Id: I739ae5da22c603fb2cf1e84d3a79fb1a6e7343b6
Related: OS#4006, SYS#4895
---
A src/target/trx_toolkit/trxd_proto.py
1 file changed, 120 insertions(+), 0 deletions(-)

Approvals:
  Jenkins Builder: Verified
  laforge: Looks good to me, but someone else must approve
  pespin: Looks good to me, approved



diff --git a/src/target/trx_toolkit/trxd_proto.py b/src/target/trx_toolkit/trxd_proto.py
new file mode 100644
index 0000000..aef3351
--- /dev/null
+++ b/src/target/trx_toolkit/trxd_proto.py
@@ -0,0 +1,120 @@
+# -*- coding: utf-8 -*-
+
+'''
+TRXD PDU definitions based on declarative codec.
+'''
+
+# TRX Toolkit
+#
+# (C) 2021 by sysmocom - s.f.m.c. GmbH <info at sysmocom.de>
+# Author: Vadim Yanitskiy <vyanitskiy at sysmocom.de>
+#
+# All Rights Reserved
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+import codec
+
+class Header(codec.BitFieldSet):
+	''' Header constructor for TRXD PDUs. '''
+
+	def __init__(self, ver: int):
+		codec.BitFieldSet.__init__(self, len=1, set=(
+			codec.BitField('ver', bl=4, val=ver),
+			codec.BitField.Pad(bl=1), # RFU
+			codec.BitField('tn', bl=3),
+		))
+
+class MTS(codec.BitFieldSet):
+	''' Modulation and Training Sequence. '''
+
+	DEF_LEN = 1
+	STRUCT = (
+		codec.BitField('nope', bl=1),
+		codec.BitField('mod', bl=4),
+		codec.BitField('tsc', bl=3),
+	)
+
+	@staticmethod
+	def get_burst_len(mod: int) -> int:
+		''' Get burst length by modulation type. '''
+
+		GMSK_BURST_LEN = 148
+
+		if (mod >> 2) in (0b00, 0b11): # GMSK or AQPSK
+			return 1 * GMSK_BURST_LEN
+		elif (mod >> 1) == 0b010: # 8-PSK
+			return 3 * GMSK_BURST_LEN
+		elif (mod >> 1) == 0b100: # 16QAM
+			return 4 * GMSK_BURST_LEN
+		elif (mod >> 1) == 0b101: # 32QAM
+			return 5 * GMSK_BURST_LEN
+		elif mod == 0b0110: # GMSK (Access Burst)
+			return 1 * GMSK_BURST_LEN
+		raise ValueError('Unknown modulation type')
+
+class BurstBits(codec.Buf):
+	''' Soft-/hard-bits with variable length. '''
+
+	def __init__(self, name: str, *args, **kw):
+		codec.Buf.__init__(self, name, *args, **kw)
+
+		# This field has a variable length that depends on moduletion type
+		self.get_len = lambda v, _: MTS.get_burst_len(v['mod'])
+		# This field is not present in NOPE / IDLE indications
+		self.get_pres = lambda v: not v['nope']
+
+
+class PDUv0Rx(codec.Envelope):
+	STRUCT = (
+		Header(ver=0),
+		codec.Uint32BE('fn'),
+		codec.Uint('rssi', mult=-1),
+		codec.Int16BE('toa256'),
+		codec.Buf('soft-bits'),
+		codec.Buf('pad'), # Optional
+	)
+
+	def __init__(self, *args, **kw):
+		codec.Envelope.__init__(self, *args, **kw)
+
+		# Field 'soft-bits' is either 148 (GMSK) or 444 (8-PSK) octets long
+		self.STRUCT[-2].get_len = lambda _, data: 444 if len(data) > 148 else 148
+
+class PDUv0Tx(codec.Envelope):
+	STRUCT = (
+		Header(ver=0),
+		codec.Uint32BE('fn'),
+		codec.Uint('pwr'),
+		codec.Buf('hard-bits'),
+	)
+
+
+class PDUv1Rx(codec.Envelope):
+	STRUCT = (
+		Header(ver=1),
+		codec.Uint32BE('fn'),
+		codec.Uint('rssi', mult=-1),
+		codec.Int16BE('toa256'),
+		MTS(),
+		codec.Int16BE('cir'),
+		BurstBits('soft-bits'),
+	)
+
+class PDUv1Tx(PDUv0Tx):
+	# Same structure as PDUv0Tx, only the version is different
+	def __init__(self, *args, **kw):
+		PDUv0Tx.__init__(self, *args, **kw)
+		self.STRUCT[0]._fields[0].val = 1

-- 
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/23137
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I739ae5da22c603fb2cf1e84d3a79fb1a6e7343b6
Gerrit-Change-Number: 23137
Gerrit-PatchSet: 4
Gerrit-Owner: fixeria <vyanitskiy at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210412/9ef3f231/attachment.htm>


More information about the gerrit-log mailing list