summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/trx_if.c
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-06-14 15:27:23 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-06-14 15:27:27 +0700
commit55a63b17598023b8eb0f7f4a6407a65e2e10d174 (patch)
tree856c0cf79b1605ed42bf09ac0e560d6d6f45d5c4 /src/host/trxcon/trx_if.c
parentf8a3959cb27dbad8bf00a3566e342c82031e085f (diff)
trxcon: use osmo_{store,load}32be() to pack / unpack TDMA fn
Diffstat (limited to 'src/host/trxcon/trx_if.c')
-rw-r--r--src/host/trxcon/trx_if.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/host/trxcon/trx_if.c b/src/host/trxcon/trx_if.c
index 91f84ec4..7a736a85 100644
--- a/src/host/trxcon/trx_if.c
+++ b/src/host/trxcon/trx_if.c
@@ -592,7 +592,7 @@ static int trx_data_rx_cb(struct osmo_fd *ofd, unsigned int what)
}
tn = buf[0];
- fn = (buf[1] << 24) | (buf[2] << 16) | (buf[3] << 8) | buf[4];
+ fn = osmo_load32be(buf + 1);
rssi = -(int8_t) buf[5];
toa256 = ((int16_t) (buf[6] << 8) | buf[7]);
@@ -650,10 +650,7 @@ int trx_if_tx_burst(struct trx_instance *trx, uint8_t tn, uint32_t fn,
LOGP(DTRXD, LOGL_DEBUG, "TX burst tn=%u fn=%u pwr=%u\n", tn, fn, pwr);
buf[0] = tn;
- buf[1] = (fn >> 24) & 0xff;
- buf[2] = (fn >> 16) & 0xff;
- buf[3] = (fn >> 8) & 0xff;
- buf[4] = (fn >> 0) & 0xff;
+ osmo_store32be(fn, buf + 1);
buf[5] = pwr;
/* Copy ubits {0,1} */