@@ -53,7 +53,9 @@ const char *Protocol_ID[] = {
53
53
size_t (*protocol_encode)(void *, ufo_t *);
54
54
bool (*protocol_decode)(void *, ufo_t *, ufo_t *);
55
55
56
- static Slots_descr_t Time_Slots, *ts;
56
+ Slots_descr_t RF_Time_Slots;
57
+
58
+ static Slots_descr_t *ts;
57
59
static uint8_t RF_timing = RF_TIMING_INTERVAL;
58
60
59
61
extern const gnss_chip_ops_t *gnss_chip;
@@ -196,7 +198,7 @@ byte RF_setup(void)
196
198
197
199
RF_timing = p->tm_type ;
198
200
199
- ts = &Time_Slots ;
201
+ ts = &RF_Time_Slots ;
200
202
ts->air_time = p->air_time ;
201
203
ts->interval_min = p->tx_interval_min ;
202
204
ts->interval_max = p->tx_interval_max ;
@@ -205,6 +207,7 @@ byte RF_setup(void)
205
207
ts->s1 .begin = p->slot1 .begin ;
206
208
ts->s0 .duration = p->slot0 .end - p->slot0 .begin ;
207
209
ts->s1 .duration = p->slot1 .end - p->slot1 .begin ;
210
+ ts->current = 0 ;
208
211
209
212
uint16_t duration = ts->s0 .duration + ts->s1 .duration ;
210
213
ts->adj = duration > ts->interval_mid ? 0 : (ts->interval_mid - duration) / 2 ;
@@ -375,10 +378,9 @@ bool RF_Transmit(size_t size, bool wait)
375
378
case RF_TIMING_2SLOTS_PPS_SYNC:
376
379
next = RF_FreqPlan.Channels == 1 ? &(ts->s0 ) :
377
380
ts->current == 1 ? &(ts->s0 ) : &(ts->s1 );
378
- adj = ts->current ? ts->adj : 0 ;
379
- TxTimeMarker = next->tmarker +
380
- ts->interval_mid +
381
- SoC->random (adj, next->duration - ts->air_time );
381
+ adj = (next == &(ts->s0 )) ? ts->adj : 0 ;
382
+ TxTimeMarker = next->tmarker + adj + ts->interval_mid +
383
+ SoC->random (0 , next->duration - ts->air_time );
382
384
break ;
383
385
case RF_TIMING_INTERVAL:
384
386
default :
0 commit comments