Skip to content

Commit 156ceda

Browse files
committed
stick V6 to time slot 0 and V7 to slot 1
1 parent bdfcab5 commit 156ceda

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

software/firmware/source/SoftRF/src/driver/RF.cpp

+8-6
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ const char *Protocol_ID[] = {
5353
size_t (*protocol_encode)(void *, ufo_t *);
5454
bool (*protocol_decode)(void *, ufo_t *, ufo_t *);
5555

56-
static Slots_descr_t Time_Slots, *ts;
56+
Slots_descr_t RF_Time_Slots;
57+
58+
static Slots_descr_t *ts;
5759
static uint8_t RF_timing = RF_TIMING_INTERVAL;
5860

5961
extern const gnss_chip_ops_t *gnss_chip;
@@ -196,7 +198,7 @@ byte RF_setup(void)
196198

197199
RF_timing = p->tm_type;
198200

199-
ts = &Time_Slots;
201+
ts = &RF_Time_Slots;
200202
ts->air_time = p->air_time;
201203
ts->interval_min = p->tx_interval_min;
202204
ts->interval_max = p->tx_interval_max;
@@ -205,6 +207,7 @@ byte RF_setup(void)
205207
ts->s1.begin = p->slot1.begin;
206208
ts->s0.duration = p->slot0.end - p->slot0.begin;
207209
ts->s1.duration = p->slot1.end - p->slot1.begin;
210+
ts->current = 0;
208211

209212
uint16_t duration = ts->s0.duration + ts->s1.duration;
210213
ts->adj = duration > ts->interval_mid ? 0 : (ts->interval_mid - duration) / 2;
@@ -375,10 +378,9 @@ bool RF_Transmit(size_t size, bool wait)
375378
case RF_TIMING_2SLOTS_PPS_SYNC:
376379
next = RF_FreqPlan.Channels == 1 ? &(ts->s0) :
377380
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);
382384
break;
383385
case RF_TIMING_INTERVAL:
384386
default:

software/firmware/source/SoftRF/src/protocol/radio/Legacy.cpp

+2-7
Original file line numberDiff line numberDiff line change
@@ -551,19 +551,14 @@ bool legacy_decode(void *legacy_pkt, ufo_t *this_aircraft, ufo_t *fop) {
551551
#endif
552552
}
553553

554-
#if defined(USE_INTERLEAVING)
555-
static bool use_v6_on_tx = true;
556-
#endif /* USE_INTERLEAVING */
554+
extern Slots_descr_t RF_Time_Slots;
557555

558556
size_t legacy_encode(void *legacy_pkt, ufo_t *this_aircraft) {
559557

560558
#if !defined(EXCLUDE_AIR6) && defined(USE_INTERLEAVING)
561-
if (use_v6_on_tx) {
562-
use_v6_on_tx = false;
559+
if (RF_Time_Slots.current == 0) {
563560
return legacy_v6_encode(legacy_pkt, this_aircraft);
564561
}
565-
566-
use_v6_on_tx = true;
567562
#endif /* USE_INTERLEAVING */
568563

569564
const uint32_t xxtea_key[4] = LEGACY_KEY5;

0 commit comments

Comments
 (0)