File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -411,9 +411,10 @@ ostime_t LMICas923_nextTx(ostime_t now) {
411
411
if ((LMIC .channelDrMap [chnl ] & (1 << (LMIC .datarate & 0xF ))) == 0 )
412
412
continue ;
413
413
414
- // not available yet?
414
+ // This channel is feasible. But might not be available.
415
415
feasibleMap |= chnlBit ;
416
416
417
+ // not available yet?
417
418
u1_t const band = LMIC .channelFreq [chnl ] & 0x3 ;
418
419
if ((s4_t )(LMIC .bands [band ].avail - mintime ) > 0 )
419
420
continue ;
Original file line number Diff line number Diff line change @@ -293,17 +293,18 @@ ostime_t LMICeu868_nextTx(ostime_t now) {
293
293
if (LMIC .channelMap < chnlBit )
294
294
break ;
295
295
296
- // not enabled?
296
+ // not enabled?
297
297
if ((LMIC .channelMap & chnlBit ) == 0 )
298
298
continue ;
299
299
300
300
// not feasible?
301
301
if ((LMIC .channelDrMap [chnl ] & (1 << (LMIC .datarate & 0xF ))) == 0 )
302
302
continue ;
303
303
304
- // not available yet?
304
+ // This channel is feasible. But might not be available.
305
305
feasibleMap |= chnlBit ;
306
306
307
+ // not available yet?
307
308
u1_t const band = LMIC .channelFreq [chnl ] & 0x3 ;
308
309
if ((s4_t )(LMIC .bands [band ].avail - mintime ) > 0 )
309
310
continue ;
You can’t perform that action at this time.
0 commit comments