We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75cce02 + aab7191 commit 42c154dCopy full SHA for 42c154d
source/MAC/IEEE802_15_4/mac_pd_sap.c
@@ -83,6 +83,10 @@ void mac_csma_backoff_start(protocol_interface_rf_mac_setup_s *rf_mac_setup)
83
84
uint32_t mac_csma_backoff_get(protocol_interface_rf_mac_setup_s *rf_mac_setup)
85
{
86
+ // Use minimum allowed CSMA-CA for asynch frames
87
+ if (rf_mac_setup->active_pd_data_request->asynch_request) {
88
+ return MIN_FHSS_CSMA_PERIOD_US;
89
+ }
90
uint8_t backoff = mac_csma_random_backoff_get(rf_mac_setup);
91
uint32_t backoff_in_us;
92
//Multiple aUnitBackoffPeriod symbol time
0 commit comments