Increased the default values for Tusage_timeout and Treply_timeout for testing on Linux.

This commit is contained in:
skarg
2011-01-18 19:45:52 +00:00
parent d6e74ba51b
commit 3f22c7e5ff
2 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -61,12 +61,12 @@ static uint8_t RxBuffer[MAX_MPDU];
/* that a node must wait for a station to begin replying to a */
/* confirmed request: 255 milliseconds. (Implementations may use */
/* larger values for this timeout, not to exceed 300 milliseconds.) */
static uint16_t Treply_timeout = 260;
static uint16_t Treply_timeout = 295;
/* The minimum time without a DataAvailable or ReceiveError event that a */
/* node must wait for a remote node to begin using a token or replying to */
/* a Poll For Master frame: 20 milliseconds. (Implementations may use */
/* larger values for this timeout, not to exceed 100 milliseconds.) */
static uint8_t Tusage_timeout = 50;
static uint8_t Tusage_timeout = 95;
/* Timer that indicates line silence - and functions */
static uint16_t SilenceTime;
#define INCREMENT_AND_LIMIT_UINT16(x) {if (x < 0xFFFF) x++;}