Corrected linker error.
This commit is contained in:
@@ -1118,7 +1118,7 @@ static bool MSTP_Master_Node_FSM(
|
|||||||
Master_State = MSTP_MASTER_STATE_IDLE;
|
Master_State = MSTP_MASTER_STATE_IDLE;
|
||||||
/* clear our flag we were holding for comparison */
|
/* clear our flag we were holding for comparison */
|
||||||
MSTP_Flag.ReceivedValidFrame = false;
|
MSTP_Flag.ReceivedValidFrame = false;
|
||||||
} else if (rs485_silence_time_elapsed(Treply_delay) ||
|
} else if ((Timer_Silence() > Treply_delay) ||
|
||||||
(pkt != NULL)) {
|
(pkt != NULL)) {
|
||||||
/* DeferredReply */
|
/* DeferredReply */
|
||||||
/* If no reply will be available from the higher layers */
|
/* If no reply will be available from the higher layers */
|
||||||
@@ -1204,7 +1204,7 @@ static void MSTP_Slave_Node_FSM(
|
|||||||
}
|
}
|
||||||
/* clear our flag we were holding for comparison */
|
/* clear our flag we were holding for comparison */
|
||||||
MSTP_Flag.ReceivePacketPending = false;
|
MSTP_Flag.ReceivePacketPending = false;
|
||||||
} else if (rs485_silence_time_elapsed(Treply_delay)) {
|
} else if ((Timer_Silence() > Treply_delay)) {
|
||||||
/* If no reply will be available from the higher layers
|
/* If no reply will be available from the higher layers
|
||||||
within Treply_delay after the reception of the final octet
|
within Treply_delay after the reception of the final octet
|
||||||
of the requesting frame (the mechanism used to determine
|
of the requesting frame (the mechanism used to determine
|
||||||
|
|||||||
Reference in New Issue
Block a user