From 64c28c32ada3b7ee1cb7f16ab3f6a0b46337ff44 Mon Sep 17 00:00:00 2001 From: skarg Date: Wed, 22 Sep 2010 01:12:14 +0000 Subject: [PATCH] corrected MS/TP new Skip Data states --- bacnet-stack/ports/bdk-atxx4-mstp/dlmstp.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bacnet-stack/ports/bdk-atxx4-mstp/dlmstp.c b/bacnet-stack/ports/bdk-atxx4-mstp/dlmstp.c index 40b4e275..42ae539c 100644 --- a/bacnet-stack/ports/bdk-atxx4-mstp/dlmstp.c +++ b/bacnet-stack/ports/bdk-atxx4-mstp/dlmstp.c @@ -627,9 +627,6 @@ static void MSTP_Receive_Frame_FSM( MSTP_Flag.ReceivedInvalidFrame = true; } Receive_State = MSTP_RECEIVE_STATE_IDLE; - } else { - MSTP_Flag.ReceivedInvalidFrame = true; - Receive_State = MSTP_RECEIVE_STATE_IDLE; } } break; @@ -1207,7 +1204,9 @@ uint16_t dlmstp_receive( (MSTP_Flag.ReceivedInvalidFrame == false)) { MSTP_Receive_Frame_FSM(); } - /* only do master state machine while rx is idle */ + if (MSTP_Flag.ReceivedValidFrameNotForUs) { + MSTP_Flag.ReceivedValidFrameNotForUs = false; + } if (Receive_State == MSTP_RECEIVE_STATE_IDLE) { while (MSTP_Master_Node_FSM()) { /* do nothing while some states fast transition */