aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/proto_trxd.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-08-26 11:21:55 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-08-26 14:34:09 +0200
commite4166be76fc03c9c3b1e960c4e11e1ff723e5cdd (patch)
tree6e559aba463809eeae26c06514fd7d48035a3830 /Transceiver52M/proto_trxd.h
parente7195ac7d00a3167e4e8bb16e7fa6de9d5223f8b (diff)
Transceiver: Clean up receival of downlink bursts
Use a packed structure to clearly indicate what is contained in the received buffer. Change-Id: I4d8c0e3c0c717699889f79e50c778d14b6058f2d
Diffstat (limited to 'Transceiver52M/proto_trxd.h')
-rw-r--r--Transceiver52M/proto_trxd.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Transceiver52M/proto_trxd.h b/Transceiver52M/proto_trxd.h
index 7eb5dac..d72cfdd 100644
--- a/Transceiver52M/proto_trxd.h
+++ b/Transceiver52M/proto_trxd.h
@@ -66,6 +66,13 @@ struct trxd_hdr_v0 {
uint8_t soft_bits[0];
} __attribute__ ((packed));
+/* Downlink burst (BTS->TRX), v0 anf v1 use same format */
+struct trxd_hdr_v01_dl {
+ struct trxd_hdr_common common;
+ uint8_t tx_att; /* Tx Attentuation */
+ uint8_t soft_bits[0];
+} __attribute__ ((packed));
+
#define TRXD_MODULATION_GMSK(ts_set) (0b0000 | (ts_set & 0b0011))
#define TRXD_MODULATION_8PSK(ts_set) (0b0100 | (ts_set & 0b0001))