Skip to content

Commit

Permalink
Fixed new PD data request for check if EDFE exchange is active.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juha Heiskanen committed Jul 31, 2020
1 parent 85ab8fd commit 7938795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/MAC/IEEE802_15_4/mac_mcps_sap.c
Original file line number Diff line number Diff line change
Expand Up @@ -2096,7 +2096,7 @@ static int8_t mcps_pd_data_request(protocol_interface_rf_mac_setup_s *rf_ptr, ma
return -1;
}
rf_ptr->macTxRequestAck = buffer->WaitResponse;
if (!rf_ptr->mac_ack_tx_active) {
if (!rf_ptr->mac_ack_tx_active && !rf_ptr->mac_edfe_tx_active) {
return mcps_pd_data_cca_trig(rf_ptr, buffer);
} else {
return 0;
Expand Down

0 comments on commit 7938795

Please sign in to comment.