From f0a70bc3dd2b178f59e457bac0cc69509ea45583 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 25 Sep 2020 00:09:49 +0200 Subject: [PATCH] stm32-sx1280: use ticks for close connection event --- chipset/sx128x/ll_sx1280.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chipset/sx128x/ll_sx1280.c b/chipset/sx128x/ll_sx1280.c index 3d10eaf63..b39afa03c 100644 --- a/chipset/sx128x/ll_sx1280.c +++ b/chipset/sx128x/ll_sx1280.c @@ -733,11 +733,11 @@ static void radio_on_rx_done(void ){ ctx.time_without_any_packets_us = 0; // check clock if we can sent a full packet before sync hop - int16_t now_ticks = packet_end_ticks - ctx.anchor_ticks; - if (now_ticks > ctx.conn_latest_tx_ticks){ + int16_t now_ticks = packet_end_ticks - ctx.anchor_ticks; + if (ctx.synced && (now_ticks > ctx.conn_latest_tx_ticks)){ // abort sending of next packet / AutoTx Radio.SetFs(); - printf("Close before Sync hop\n"); + printf("Close before Sync hop: now %u > %u\n", now_ticks, ctx.conn_latest_tx_ticks); // get rx pdu radio_fetch_rx_pdu();