From e9619297481f504b549e9555020692ab1b923132 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Fri, 13 May 2022 17:14:57 +0300 Subject: [PATCH] pycrate_osmo.L1CTL: fix L1CTL_H0: add missing padding Both L1CTL_H0 and L1CTL_H1 must have equal size. --- pycrate_osmo/L1CTL.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pycrate_osmo/L1CTL.py b/pycrate_osmo/L1CTL.py index 868de37..e4e1fbd 100644 --- a/pycrate_osmo/L1CTL.py +++ b/pycrate_osmo/L1CTL.py @@ -427,6 +427,7 @@ class L1CTLDataReq(Envelope): class L1CTL_H0(Envelope): _GEN = ( ARFCNBand('ARFCN'), + Buf('Pad', bl=138 * 8, rep=REPR_HEX) )