Skip to content

Commit

Permalink
FHSS: do not push asynch messages in broadcast queue
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarkko Paso committed Apr 19, 2018
1 parent 45daec9 commit 40f3685
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
Expand Up @@ -1656,7 +1656,7 @@ void mcps_sap_pd_req_queue_write(protocol_interface_rf_mac_setup_s *rf_mac_setup
bool use_bc_queue = false;

// When FHSS is enabled, broadcast buffers are pushed to own queue
if (rf_mac_setup->fhss_api) {
if (rf_mac_setup->fhss_api && (buffer->asynch_request == false)) {
if (rf_mac_setup->fhss_api->use_broadcast_queue(rf_mac_setup->fhss_api, !mac_is_ack_request_set(buffer),
mac_convert_frame_type_to_fhss(buffer->fcf_dsn.frametype)) == true) {
cur = rf_mac_setup->pd_data_request_bc_queue_to_go;
Expand Down

0 comments on commit 40f3685

Please sign in to comment.