summaryrefslogtreecommitdiff
path: root/cesar/mac/common
diff options
context:
space:
mode:
authorNélio Laranjeiro2011-09-08 17:35:53 +0200
committerNélio Laranjeiro2011-09-16 15:04:45 +0200
commite621b14f0c11dff0a0e9ef4ac27d1a10360e8b8b (patch)
treee7759d50bd9e2e74481ab112cd67106e9b37f487 /cesar/mac/common
parentffa35d227a8ecc8ca12ecc423eb456d4d9c03d40 (diff)
cesar/mac: increase expiration timeout for RX MFS, closes #2717
RX MFS expires 1.5 seconds after inactivity, MFS TX still expires after 1s of inactivity.
Diffstat (limited to 'cesar/mac/common')
-rw-r--r--cesar/mac/common/mfs.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cesar/mac/common/mfs.h b/cesar/mac/common/mfs.h
index cb401df18c..07fe832e0d 100644
--- a/cesar/mac/common/mfs.h
+++ b/cesar/mac/common/mfs.h
@@ -20,8 +20,10 @@
/** Default encoded RX window size for data (corresponding to 16). */
#define MFS_RX_WINDOW_SIZE_DATA_DEFAULT_ENCODED 0x2
-/** Delay during the one the MFS is still active. */
-#define MFS_ACTIVITY_DELAY_MS 1000
+/** Delay during the one the MFS TX is still active. */
+#define MFS_TX_ACTIVITY_DELAY_MS 1000
+/** Delay during the one the MFS RX is still active. */
+#define MFS_RX_ACTIVITY_DELAY_MS 1500
/** Release timeout. */
#define MFS_RELEASE_DELAY_MS 1000
/** Delay TX PBs have to pass through MAC layer. */