Skip to content

Commit

Permalink
MAC: Fixed enhanced ack TX time
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarkko Paso committed Oct 2, 2018
1 parent 5836b50 commit db6dc6b
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 @@ -1736,7 +1736,7 @@ int8_t mcps_generic_ack_build(protocol_interface_rf_mac_setup_s *rf_ptr, const m

tx_buf->len = frame_length;
uint8_t *mhr_start = ptr;
buffer->tx_time = rx_time + 196; //Send 196 us later
buffer->tx_time = mac_mcps_sap_get_phy_timestamp(rf_ptr) + 300; //Send 300 us later

ptr = mac_generic_packet_write(rf_ptr, ptr, buffer);

Expand Down

0 comments on commit db6dc6b

Please sign in to comment.