You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!is_broadcast_addr&& (fhss_structure->ws->is_on_bc_channel== true)) {
366
371
return false;
367
372
}
373
+
// This condition will check that message is not sent on bad channel
374
+
if (fhss_check_bad_channel(fhss_structure, handle) == false) {
375
+
return false;
376
+
}
377
+
// Check that there is enough unicast TX time before next broadcast channel. We try to avoid delaying the change to broadcast channel because of ongoing transmission.
378
+
if (!is_broadcast_addr&& !fhss_ws_check_tx_time(fhss_structure, frame_length, phy_header_length, phy_tail_length)) {
379
+
return false;
380
+
}
368
381
// Check TX/RX slot for unicast frames
369
382
if (!is_broadcast_addr&& !fhss_ws_check_tx_allowed(fhss_structure)) {
0 commit comments